File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/
6
6
7
7
### 5.10.0 TBD
8
8
- Implemented #1796 : Switch to ` tomli ` for pyproject.toml configuration loader.
9
+ - Fixed #1801 : CLI bug (--exend-skip-glob, overrides instead of extending).
9
10
10
11
#### Potentially breaking changes:
11
12
- Fixed #1785 : ` _ast ` module incorrectly excluded from stdlib definition.
Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
346
346
target_group .add_argument (
347
347
"--extend-skip-glob" ,
348
348
help = "Additional files that isort should skip over (extending --skip-glob)." ,
349
- dest = "skip_glob " ,
349
+ dest = "extend_skip_glob " ,
350
350
action = "append" ,
351
351
)
352
352
target_group .add_argument (
You can’t perform that action at this time.
0 commit comments