Skip to content

Commit

Permalink
fix: codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
asing577 committed Nov 22, 2023
1 parent 7063c39 commit dbb6bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def collect_user_repositories() -> Dict:

contributed = await DM.get_remote_graphql("repos_contributed_to", username=GHM.USER.login)

contributed_nodes = [repo for repo in contributed if repo != None and repo["name"] not in repo_names and not repo["isFork"]]
contributed_nodes = [repo for repo in contributed if repo is not None and repo["name"] not in repo_names and not repo["isFork"]]
DBM.g("\tUser contributed to repository list collected!")

return repositories + contributed_nodes
Expand Down

0 comments on commit dbb6bd8

Please sign in to comment.