From dc0350d6ffb2e49428ff74a50988fd8a03084968 Mon Sep 17 00:00:00 2001 From: Jack Wilsdon Date: Fri, 8 Jan 2021 18:21:07 +0000 Subject: [PATCH] Remove flake8-blind-except flake8 extension pycodestyle 2.1.0 now raises a lint error on blind "except" statements, whereas this library now raises a lint error on "except Exception" instead (which is something we don't really want). --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 41050307a..a6cfc9310 100755 --- a/setup.py +++ b/setup.py @@ -131,7 +131,6 @@ setup( ], 'lint': [ 'flake8', - 'flake8-blind-except', 'flake8-coding', 'flake8-docstrings', 'flake8-future-import',