From cef2ba0129a227aca1be9d8bb5ef8f53bef3accc Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 24 Oct 2017 01:00:08 +0200 Subject: [PATCH] flake: silence some new warnings --- .flake8 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index f70b8f4277..7056ee29cc 100644 --- a/.flake8 +++ b/.flake8 @@ -21,4 +21,8 @@ ignore = # E501: line too long E501, # E721: do not compare types, use 'isinstance()' - E721 + E721, + # E722: do not use bare except + E722, + # E741: ambiguous variable name + E741