Fix for new flake8 version

This commit is contained in:
Antonin Raffin 2022-11-25 18:51:34 +01:00
parent 36aeae18b5
commit 703fd2dd68
No known key found for this signature in database
GPG Key ID: B8B48F65CAD6232C
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@ Deprecations:
Others: Others:
^^^^^^^ ^^^^^^^
- Fixed flake8 config
Release 1.6.2 (2022-10-10) Release 1.6.2 (2022-10-10)
-------------------------- --------------------------

View File

@ -20,7 +20,8 @@ markers =
inputs = sb3_contrib inputs = sb3_contrib
[flake8] [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 # Ignore import not used when aliases are defined
per-file-ignores = per-file-ignores =
./sb3_contrib/__init__.py:F401 ./sb3_contrib/__init__.py:F401