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
Imports from the _async module seem to be unaffected:
from library._async.module import AsyncFoo
gets converted to
from library._async.module import SyncFoo
Expected result:
from library._sync.module import SyncFoo
Currently working around it by exporting both the classes from a common place, but it'd be nice to have this work.
The text was updated successfully, but these errors were encountered:
You can find examples of using the additional_replacements parameter of Rule to add custom replacements.
additional_replacements
Rule
https://unasync.readthedocs.io/en/latest/#usage-outside-of-setuptools
This should allow you to achieve what you're after.
Sorry, something went wrong.
No branches or pull requests
Imports from the _async module seem to be unaffected:
gets converted to
Expected result:
Currently working around it by exporting both the classes from a common place, but it'd be nice to have this work.
The text was updated successfully, but these errors were encountered: