flake8: Fix config formatting error

The list of paths under `exclude` had a formatting error. Entries must
be separated by commas.

Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
Russell Bryant 2024-10-03 14:00:20 +00:00
parent b06b8e9c7d
commit e8c894fece

10
.flake8
View file

@ -21,11 +21,11 @@ ignore =
optional-ascii-coding = True optional-ascii-coding = True
exclude = exclude =
./.git, ./.git,
./docs ./docs,
./build ./build,
./scripts, ./scripts,
./venv, ./venv,
*.pyi *.pyi,
.pre-commit-config.yaml .pre-commit-config.yaml,
*.md *.md,
.flake8 .flake8