We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df473d3 commit 547a4b6Copy full SHA for 547a4b6
generateGraph.py
@@ -50,6 +50,8 @@ def create_graph_repos(repos=REPOS, use_custom_images=USE_CUSTOM_IMAGES, repo_im
50
for commit in commits:
51
duplicate = False
52
author = commit["author"]
53
+ if not author:
54
+ continue
55
for index, node in enumerate(graph["nodes"]):
56
if node["name"] == author["login"]:
57
duplicate = True
0 commit comments