Is there a way to format imports from:
from a_very_long_or_indented_module_name_yada_yad import (long_argument_1,
long_argument_2,
long_argument_3)
to
from a_very_long_or_indented_module_name_yada_yad import (
long_argument_1,
long_argument_2,
long_argument_3
)
?
Is there a way to format imports from:
to
?