### Summary Ruff says that the following is unsorted (see [playground](https://play.ruff.rs/7883baeb-e3fa-46c2-a2b7-92b96f5e8795)): ```python from mod import A, AA, AAA # Import block is un-sorted or un-formatted (I001) [Ln 1, Col 1] # ruff wants this instead: `AA, AAA, A` ``` However, this is OK ([playground](https://play.ruff.rs/668e35cb-ef75-405f-ab6d-f39bcd307cba)): ```python from mod import a, aa, aaa ``` ### Version 0.14.0