From 6887f81f491fd4029f91123cc7f4fa53865c86f4 Mon Sep 17 00:00:00 2001 From: Jeff Hazboun Date: Tue, 20 Aug 2024 09:51:12 -0700 Subject: [PATCH] Update .flake8 Adding `C901` to the ignore list. In an ideal world we would refactor these functions, but that is a larger project. --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index e714a89c..16b18d0a 100644 --- a/.flake8 +++ b/.flake8 @@ -2,6 +2,8 @@ max-line-length = 120 max-complexity = 45 ignore = + C901, + # function is too complex E203, # missing whitespace around operator E225,