Refs #33476 -- Used black's force-exclude instead of extend-exclude.

When using `pre-commit run --all-files`, because the filename is passed
explicitly, the file referred to in `extend-exclude` is not properly
excluded. Use `force-exclude` instead to say we really mean it.

See https://github.com/psf/black/issues/438.
This commit is contained in:
Nick Pope 2022-03-01 16:59:41 +00:00 committed by Carlton Gibson
parent 93803a1b5f
commit fa94898034
1 changed files with 1 additions and 1 deletions

View File

@ -4,4 +4,4 @@ build-backend = 'setuptools.build_meta:__legacy__'
[tool.black]
target-version = ['py38']
extend-exclude = 'tests/test_runner_apps/tagged/tests_syntax_error.py'
force-exclude = 'tests/test_runner_apps/tagged/tests_syntax_error.py'