Skip to content

Commit

Permalink
Update github.py
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMaude authored Nov 12, 2024
1 parent e8ccabc commit 5ef076b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobserver/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def get_repos_with_dates(self, org):

topics = []
if repo["repositoryTopics"]["nodes"]:
topics = [n["topic"]["name"] for n in repo["repositoryTopics"]["nodes"]]
topics = [n["topic"]["name"] for n in repo["repositoryTopics"]["nodes"] if n is not None]

yield {
"name": repo["name"],
Expand Down

0 comments on commit 5ef076b

Please sign in to comment.