The tuple, list, etc sorting options don't consider the profile option.
Code:
# isort: tuple
data = ("therearesuperlong", "therearesuperlong", "therearesuperlong", "therearesuperlong", "therearesuperlong")
isort dummy.py --profile black
# isort: tuple
data = ('therearesuperlong', 'therearesuperlong', 'therearesuperlong', 'therearesuperlong',
'therearesuperlong')
black dummy.py
# isort: tuple
data = (
"therearesuperlong",
"therearesuperlong",
"therearesuperlong",
"therearesuperlong",
"therearesuperlong",
)
I would expect that these sorting options consider the profile as normal. Also, the sorting options are not documented but noted here #1358
The tuple, list, etc sorting options don't consider the profile option.
Code:
isort dummy.py --profile blackblack dummy.pyI would expect that these sorting options consider the profile as normal. Also, the sorting options are not documented but noted here #1358