@@ -207,8 +207,8 @@ def _build_arg_parser() -> argparse.ArgumentParser:
207
207
)
208
208
general_group .add_argument (
209
209
"--overwrite-in-place" ,
210
- help = "Tells isort to overwrite in place using the same file handle."
211
- "Comes at a performance and memory usage penalty over it's standard "
210
+ help = "Tells isort to overwrite in place using the same file handle. "
211
+ "Comes at a performance and memory usage penalty over its standard "
212
212
"approach but ensures all file flags and modes stay unchanged." ,
213
213
dest = "overwrite_in_place" ,
214
214
action = "store_true" ,
@@ -223,7 +223,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
223
223
"--show-files" ,
224
224
dest = "show_files" ,
225
225
action = "store_true" ,
226
- help = "See the files isort will be ran against with the current config options." ,
226
+ help = "See the files isort will be run against with the current config options." ,
227
227
)
228
228
general_group .add_argument (
229
229
"--df" ,
@@ -363,13 +363,13 @@ def _build_arg_parser() -> argparse.ArgumentParser:
363
363
"--supported-extension" ,
364
364
dest = "supported_extensions" ,
365
365
action = "append" ,
366
- help = "Specifies what extensions isort can be ran against." ,
366
+ help = "Specifies what extensions isort can be run against." ,
367
367
)
368
368
target_group .add_argument (
369
369
"--blocked-extension" ,
370
370
dest = "blocked_extensions" ,
371
371
action = "append" ,
372
- help = "Specifies what extensions isort can never be ran against." ,
372
+ help = "Specifies what extensions isort can never be run against." ,
373
373
)
374
374
target_group .add_argument (
375
375
"--dont-follow-links" ,
@@ -386,7 +386,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
386
386
"--allow-root" ,
387
387
action = "store_true" ,
388
388
default = False ,
389
- help = "Tells isort not to treat / specially, allowing it to be ran against the root dir." ,
389
+ help = "Tells isort not to treat / specially, allowing it to be run against the root dir." ,
390
390
)
391
391
392
392
output_group .add_argument (
@@ -703,9 +703,9 @@ def _build_arg_parser() -> argparse.ArgumentParser:
703
703
"--os" ,
704
704
dest = "only_sections" ,
705
705
action = "store_true" ,
706
- help = "Causes imports to be sorted based on their sections like STDLIB,THIRDPARTY etc. "
706
+ help = "Causes imports to be sorted based on their sections like STDLIB, THIRDPARTY, etc. "
707
707
"Within sections, the imports are ordered by their import style and the imports with "
708
- "same style maintain their relative positions." ,
708
+ "the same style maintain their relative positions." ,
709
709
)
710
710
section_group .add_argument (
711
711
"--ds" ,
@@ -805,7 +805,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
805
805
help = "Force isort to recognize a module as part of Python's internal future compatibility "
806
806
"libraries. WARNING: this overrides the behavior of __future__ handling and therefore"
807
807
" can result in code that can't execute. If you're looking to add dependencies such "
808
- "as six a better option is to create a another section below --future using custom "
808
+ "as six, a better option is to create another section below --future using custom "
809
809
"sections. See: https://github.com/PyCQA/isort#custom-sections-and-ordering and the "
810
810
"discussion here: https://github.com/PyCQA/isort/issues/1463." ,
811
811
)
0 commit comments