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
Modernize introduces bad syntax when dealing with imports from local packages.
Original code:
import ssl.SSLCommon
Modernized code containing syntax error:
from . import ssl.SSLCommon
Probably desired code:
from .ssl import SSLCommon as ssl_SSLCommon
The text was updated successfully, but these errors were encountered:
The local translation that will keep name resolution consistent:
from .ssl import SSLCommon # Ensure import from . import ssl # Bind top level name
Sorry, something went wrong.
No branches or pull requests
Modernize introduces bad syntax when dealing with imports from local packages.
Original code:
Modernized code containing syntax error:
Probably desired code:
The text was updated successfully, but these errors were encountered: