summaryrefslogtreecommitdiff
path: root/isort/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/main.py')
-rw-r--r--isort/main.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/isort/main.py b/isort/main.py
index 2dab21ae..18c4d164 100644
--- a/isort/main.py
+++ b/isort/main.py
@@ -449,8 +449,13 @@ def parse_args(argv: Optional[Sequence[str]] = None) -> Dict[str, Any]:
action="store_true",
help="Use parenthesis for line continuation on length limit instead of slashes.",
)
- parser.add_argument("-V", "--version", action="store_true", dest="show_version",
- help="Displays the currently installed version of isort.")
+ parser.add_argument(
+ "-V",
+ "--version",
+ action="store_true",
+ dest="show_version",
+ help="Displays the currently installed version of isort.",
+ )
parser.add_argument(
"-v",
"--verbose",