fix: codestyle

This commit is contained in:
anmol singh
2023-11-22 11:53:42 +05:30
parent 7063c39f20
commit dbb6bd8a1d

View File

@@ -140,7 +140,7 @@ async def collect_user_repositories() -> Dict:
contributed = await DM.get_remote_graphql("repos_contributed_to", username=GHM.USER.login) 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!") DBM.g("\tUser contributed to repository list collected!")
return repositories + contributed_nodes return repositories + contributed_nodes