mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 15:23:51 +00:00
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:
parent
b06b8e9c7d
commit
e8c894fece
1 changed files with 5 additions and 5 deletions
10
.flake8
10
.flake8
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue