Open henryiii opened 6 months ago
When two lines are reordered, a space is sometimes added:
Before:
[build-system] requires = [ "hatchling", ] build-backend = "hatchling.build" [project]
After:
[build-system] build-backend = "hatchling.build" requires = [ "hatchling", ] [project]
Interesting, this doesn't show up if I add a unit test (project.rs or main.rs), but it does show up if I add it as an integration test (in tests_main.py).
When two lines are reordered, a space is sometimes added:
Before:
After: