Skip to content

Commit

Permalink
Update .flake8 to ignore Bugbear's new B028 (biopython#4253)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPiotrowski authored Mar 3, 2023
1 parent ae51b5b commit 6e5212b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ ignore =
B007,
# Loop control variable not used within the loop body.
# If this is intended, start the name with an underscore
B028,
# No explicit stacklevel keyword argument found.
# The warn method from the warnings module uses a stacklevel of 1
# by default... It is therefore recommended to use a stacklevel of
# 2 or greater to provide more information to the user
B902,
# blind except Exception: statement
# =========================================
Expand Down

0 comments on commit 6e5212b

Please sign in to comment.