Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Our current isort config doesn't fully work for the pre-commit hook. Whereas in tox isort is called with the global `.` path, pre-commit passes all filenames individually. E.g. running this command will also reformat the `mypy/typeshed` directory: ``` pre-commit run isort --all-files ``` Using `skip_glob` instead of `skip` will resolve the issue. https://pycqa.github.io/isort/docs/configuration/options.html#skip-glob Followup to #13832 (comment) /CC: @hauntsaninja
- Loading branch information