-
-
Notifications
You must be signed in to change notification settings - Fork 334
Closed
Description
In GitLab by @przemyslaw-hejman on Jul 17, 2015, 01:14
Hey, I've recently cracked into such an issue:
./base/tests/test_graphite.py:78:44: F821 undefined name 'ConnectionRefusedError'
Of course I did not import that explicitly as these are builtins: https://docs.python.org/3/library/exceptions.html
Using flake8==2.4.1
For now solving that with tox config:
[flake8]
ignore = F821
but i think this error should also consider builtins - or maybe it does and I'm doing something wrong?