chore(pylint): Enable useless-suppression check (#16388)

Co-authored-by: John Bodley <john.bodley@airbnb.com>
This commit is contained in:
John Bodley
2021-08-23 08:58:41 -07:00
committed by GitHub
parent 970d762779
commit 7e4c940314
66 changed files with 128 additions and 226 deletions

View File

@@ -116,7 +116,7 @@ class ValidateDatabaseParametersCommand(BaseCommand):
try:
with closing(engine.raw_connection()) as conn:
alive = engine.dialect.do_ping(conn)
except Exception as ex: # pylint: disable=broad-except
except Exception as ex:
url = make_url(sqlalchemy_uri)
context = {
"hostname": url.host,