From 703fd2dd68a2568d92b644073dce064bc1d49d14 Mon Sep 17 00:00:00 2001 From: Antonin Raffin Date: Fri, 25 Nov 2022 18:51:34 +0100 Subject: [PATCH] Fix for new flake8 version --- docs/misc/changelog.rst | 2 +- setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index f6bddc7..d279055 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -25,7 +25,7 @@ Deprecations: Others: ^^^^^^^ - +- Fixed flake8 config Release 1.6.2 (2022-10-10) -------------------------- diff --git a/setup.cfg b/setup.cfg index 63251ee..e9edb55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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