-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
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:
try:
from code_quality import (Dict)
except:
try:
from Dict import (Dict)
except:
print "from standard: Failed to import Dict.Dict"
Metadata
Metadata
Assignees
Labels
No labels