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
Imports are currently done in a bunch of different ways through out the module. Ideally, all imports should be done using the full namespace they're importable under (i.e. instead of from foo import bar do import foo.bar) and should never change imported names (i.e. instead of import Foo as FizzFoo do import Foo). This should be standardized.
The text was updated successfully, but these errors were encountered:
Standardize on "import module" format rather than "from module import foo" format
Remove _poetry stub module since we directly depend on the poetry package now
Fix conflicts between modules and parameters both named 'poetry'
Fixes#92
Imports are currently done in a bunch of different ways through out the module. Ideally, all imports should be done using the full namespace they're importable under (i.e. instead of
from foo import bar
doimport foo.bar
) and should never change imported names (i.e. instead ofimport Foo as FizzFoo
doimport Foo
). This should be standardized.The text was updated successfully, but these errors were encountered: