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 103ac34 commit 2047b7aCopy full SHA for 2047b7a
utils/githubAPI.py
@@ -70,7 +70,7 @@ def gitHubCommentAPI(issues):
70
71
# For each non-bot comment, split up each sentence and append into CORPUS array above.
72
for comment in comment_data:
73
- if (comment["user"]["type"] != "Bot"):
+ if (comment["user"]["type"] != "Bot" and comment["user"]["login"] != "dependabot[bot]"):
74
75
# Tokenize CODE before splitting lines to prevent random code formatted lines
76
# to throw error and skew the results.
0 commit comments