Preserve star imports when re-formatting import blocks (#1066)

This commit is contained in:
Charlie Marsh
2022-12-05 11:48:38 -05:00
committed by GitHub
parent e07d3f6313
commit 5f8294aea4
4 changed files with 97 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
from some_other_module import some_class
from some_other_module import *
# Above
from some_module import some_class # Aside
# Above
from some_module import * # Aside