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