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
I didn't find a way to use pycln as a module, it would be good if there was a way, (at least for me).
Illustrative example of this feature:
from pycln import remove_unused_imports code = """ from os import path import sys a = 1 b = 2 c = a + b print(c) """ modified = remove_unused_imports(code) print(modified)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I didn't find a way to use pycln as a module, it would be good if there was a way, (at least for me).
Illustrative example of this feature:
The text was updated successfully, but these errors were encountered: