From c578dce794956641b5f3baa86e804b0ccad1276f Mon Sep 17 00:00:00 2001 From: Prathamesh Desai Date: Mon, 27 Dec 2021 23:29:39 +0530 Subject: [PATCH] Fixed flake8 section in setup.cfg --- setup.cfg | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 6d65158d3..938b39de6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,9 @@ +[flake8] # Excludes due to known issues or incompatibilities with black: # BLK100: Black would make changes. https://pypi.org/project/flake8-black/ # W503: https://github.com/psf/black/search?q=W503&unscoped_q=W503 # E231: https://github.com/psf/black/issues/1202 - +ignore = BLK100,E231,W503 statistics = 1 # black official is 88 max-line-length = 88 diff --git a/setup.py b/setup.py index c2db2f187..654010fa0 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ install_requires=requirements, license='BSD', zip_safe=False, - classifiers=[ + classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", @@ -67,4 +67,4 @@ "package", "packaging", ], -) \ No newline at end of file +)