We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tox -e flake8
1 parent c055e7f commit a3cf56bCopy full SHA for a3cf56b
tests/test_file.py
@@ -38,7 +38,7 @@
38
try:
39
# Python2
40
from future_builtins import oct
41
-except: # pragma: NO COVER
+except ImportError: # pragma: NO COVER
42
pass
43
44
_filehandle, FILENAME = tempfile.mkstemp('oauth2client_test.data')
tox.ini
@@ -110,3 +110,7 @@ putty-ignore =
110
# Ignore lines over 80 chars that include "http:" or "https:"
111
/http:/ : E501
112
/https:/ : E501
113
+ # E722 do not use bare except
114
+ # Existing sloppy usages.
115
+ oauth2client/crypt.py : E722
116
+ oauth2client/contrib/multiprocess_file_storage.py : E722
0 commit comments