We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee8733 commit 404d809Copy full SHA for 404d809
isort/output.py
@@ -504,7 +504,13 @@ def _with_from_imports(
504
config=config,
505
multi_line_output=wrap.Modes.VERTICAL_GRID, # type: ignore
506
)
507
- if max(len(x) for x in import_statement.split("\n")) > config.line_length:
+ if (
508
+ max(
509
+ len(import_line)
510
+ for import_line in import_statement.split(parsed.line_separator)
511
+ )
512
+ > config.line_length
513
+ ):
514
import_statement = other_import_statement
515
if not do_multiline_reformat and len(import_statement) > config.line_length:
516
import_statement = wrap.line(import_statement, parsed.line_separator, config)
0 commit comments