From ab3dbb7fbc7d93f1b398f7772dcf67aad32728fc Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 12 May 2024 17:12:42 +0200 Subject: [PATCH] Allow flake E203 - Incompatible with ruff ... https://github.com/astral-sh/ruff/issues/8752 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 405a06917..5ca727f31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -166,7 +166,7 @@ known-first-party = ["freqtrade_client"] [tool.flake8] # Default from https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-ignore # minus E226 -ignore = ["E121","E123","E126","E24","E704","W503","W504"] +ignore = ["E121","E123","E126","E24", "E203","E704","W503","W504"] max-line-length = 100 max-complexity = 12 exclude = [