From 8cd73643c09912c841e140d67ac10bc2edeb1ea3 Mon Sep 17 00:00:00 2001 From: Jamie Stumme <3059647+StummeJ@users.noreply.github.com> Date: Mon, 26 Feb 2024 17:12:06 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20make=20black=20match=20?= =?UTF-8?q?flake8=20rules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 0f6f5a8..6703612 100644 --- a/.flake8 +++ b/.flake8 @@ -1,6 +1,6 @@ [flake8] exclude = __pycache__,built,build,venv -ignore = E203, E266, W503 +ignore = E203, E266, W503, E704, E701 max-line-length = 88 max-complexity = 18 select = B,C,E,F,W,T4,B9