Skip to content

Commit

Permalink
Ensure line stays < 100 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Dec 9, 2020
1 parent a6c694b commit c8afa9a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions isort/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,8 +663,9 @@ def _build_arg_parser() -> argparse.ArgumentParser:
output_group.add_argument(
"--dedupe-imports",
dest="dedupe_imports",
help="Tells isort to dedupe duplicated imports that are seen at the root across import blocks.",
action="store_true"
help="Tells isort to dedupe duplicated imports that are seen at the root across "
"import blocks.",
action="store_true",
)

section_group.add_argument(
Expand Down

0 comments on commit c8afa9a

Please sign in to comment.