Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Aug 3, 2021
1 parent 451ae64 commit 580f282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spackbot/handlers/reviewers.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def add_issue_maintainers(event, gh, package_list):
title = event.data["issue"]["title"].lower() + " "

# Replace special characters with spaces
title = re.sub("[-!#%^*(){}:_&$@\[\]]+", " ", title)
title = re.sub("[-!#%^*(){}:_&$@\[\]]+", " ", title) # noqa

# Does the title have a known package (must have space before and after)
package_regex = "( %s )" % " | ".join(package_list)
Expand Down

0 comments on commit 580f282

Please sign in to comment.