From 7cc7586ba8694573c6a682ea787328ce6f33d0e3 Mon Sep 17 00:00:00 2001 From: Sven Steinbauer Date: Mon, 6 May 2024 15:03:18 +0100 Subject: [PATCH] flake8 to ignore black formatting choices --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2e3a019..53e0eae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ isort = "^5.12.0" [tool.flake8] max-line-length = 88 ignore = [ - 'E203', 'E231', 'W604' + 'E203', 'E231', 'W604', 'W503' ] per-file-ignores = [ 'default_conf.py:E501',