You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should take import statements that are over 100 characters (including spaces) and create a vertical hanging indent for the import statement. However, when we use hanging indents, isort is changing them to single line imports that are over 100 characters. We are also using black with the same settings, so it then reverts the changes. This has led to an infinite loop of isort and black fighting one another. Our short term fix is to turn off some of the isort checks and rely on black to do the vertical hanging indent work, but it would be great if isort behaved as expected.
We're using isort==5.11.5. Please disregard if this is fixed in 6
The text was updated successfully, but these errors were encountered:
We have an .isort.cfg file that looks like this.
This should take import statements that are over 100 characters (including spaces) and create a vertical hanging indent for the import statement. However, when we use hanging indents, isort is changing them to single line imports that are over 100 characters. We are also using black with the same settings, so it then reverts the changes. This has led to an infinite loop of isort and black fighting one another. Our short term fix is to turn off some of the isort checks and rely on black to do the vertical hanging indent work, but it would be great if isort behaved as expected.
We're using isort==5.11.5. Please disregard if this is fixed in 6
The text was updated successfully, but these errors were encountered: