Fix for new flake8 version
This commit is contained in:
parent
36aeae18b5
commit
703fd2dd68
|
|
@ -25,7 +25,7 @@ Deprecations:
|
|||
|
||||
Others:
|
||||
^^^^^^^
|
||||
|
||||
- Fixed flake8 config
|
||||
|
||||
Release 1.6.2 (2022-10-10)
|
||||
--------------------------
|
||||
|
|
|
|||
|
|
@ -20,7 +20,8 @@ markers =
|
|||
inputs = sb3_contrib
|
||||
|
||||
[flake8]
|
||||
ignore = W503,W504,E203,E231 # line breaks before and after binary operators
|
||||
# line breaks before and after binary operators
|
||||
ignore = W503,W504,E203,E231
|
||||
# Ignore import not used when aliases are defined
|
||||
per-file-ignores =
|
||||
./sb3_contrib/__init__.py:F401
|
||||
|
|
|
|||
Loading…
Reference in New Issue