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.
ignored_contributors
None
1 parent cfcc081 commit 31998f2Copy full SHA for 31998f2
github_activity/github_activity.py
@@ -467,7 +467,7 @@ def generate_activity_md(
467
def ignored_user(username):
468
if username in bot_users:
469
return True
470
- if any(fnmatch.fnmatch(username, user) for user in ignored_contributors):
+ if ignored_contributors and any(fnmatch.fnmatch(username, user) for user in ignored_contributors):
471
472
return False
473
0 commit comments