Created
February 13, 2022 23:47
-
-
Save anandtripathi5/d347d6f68a81ed8946f991e05423d60e to your computer and use it in GitHub Desktop.
Explicit is better than implicit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from .. import some_module | |
# or | |
from foo.bar import some_module | |
# another example | |
from foo.bar.some_module import * | |
# or | |
from foo.bar.some_module import specific_variable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment