flake: silence some new warnings

This commit is contained in:
Pavol Rusnak 2017-10-24 01:00:08 +02:00
parent 23d75bfc10
commit cef2ba0129
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 5 additions and 1 deletions

View File

@ -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