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
Running µsort on this sort of input does what I would consider to be the "wrong thing":
import re import usort import trailrunner print("hello")
This gets sorted into:
import re import trailrunner import usort print("hello")
Ie, the leading blank line above import usort is kept when moving usort below trailrunner, even though they are in the same category.
import usort
usort
trailrunner
The text was updated successfully, but these errors were encountered:
I stumbled over this behavior today. The documentation only mentions:
Normalize whitespace between imports as needed
That is quite nondescript. Maybe we can add a paragraph what this actually means when the behavior is no longer the "wrong thing"?
Sorry, something went wrong.
amyreese
No branches or pull requests
Running µsort on this sort of input does what I would consider to be the "wrong thing":
This gets sorted into:
Ie, the leading blank line above
import usort
is kept when movingusort
belowtrailrunner
, even though they are in the same category.The text was updated successfully, but these errors were encountered: