Running µsort on this sort of input does what I would consider to be the "wrong thing": ```py import re import usort import trailrunner print("hello") ``` This gets sorted into: ```py 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.