We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Structure to reproduce:
main.py package/ module.py module1.py
from package.module1 import add_more_text def main(): while True: s = input() print(add_more_text(s)) if __name__=="__main__": main()
def add_text(s): return s + " foo bar"
from . import module def add_more_text(s): s = module.add_text(s) return s + ' zoom'
The text was updated successfully, but these errors were encountered:
Fix issue reloading relative imports. Fixes microsoft#680
0ca0d10
5d91f6a
202a5ef
No branches or pull requests
Structure to reproduce:
main.py:
module.py
module1.py:
The text was updated successfully, but these errors were encountered: