From e8c894fecee33a0143816686474285a2440badd1 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 3 Oct 2024 14:00:20 +0000 Subject: [PATCH] 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 --- .flake8 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.flake8 b/.flake8 index af5005b0d..0e3033d12 100644 --- a/.flake8 +++ b/.flake8 @@ -21,11 +21,11 @@ ignore = optional-ascii-coding = True exclude = ./.git, - ./docs - ./build + ./docs, + ./build, ./scripts, ./venv, - *.pyi - .pre-commit-config.yaml - *.md + *.pyi, + .pre-commit-config.yaml, + *.md, .flake8