You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run pep8/pylint/pyflakes I must import one way.
When I run coverage I must import the other way (see below).
This appears to be a bug in coverage.
My current workaround for the problem is this:
try:
from code_quality import (Dict)
except:
try:
from Dict import (Dict)
except:
print "from standard: Failed to import Dict.Dict"
The text was updated successfully, but these errors were encountered:
My project is: code_quality
When I run pep8/pylint/pyflakes I must import one way.
When I run coverage I must import the other way (see below).
This appears to be a bug in coverage.
My current workaround for the problem is this:
The text was updated successfully, but these errors were encountered: