From 5dfb4c708be208fd96549a1b45d343b0d385ca71 Mon Sep 17 00:00:00 2001 From: klein panic Date: Fri, 1 Nov 2024 01:39:09 -0400 Subject: [PATCH] fixed flake8 hopefully --- .flake8 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.flake8 b/.flake8 index a3d8983..81adedf 100644 --- a/.flake8 +++ b/.flake8 @@ -1,11 +1,11 @@ [flake8] -max-line-length = 79 # PEP8 recommends 79, but you can adjust this +max-line-length = 79 + exclude = - venv, # Ignore your virtual environment - .git, # Ignore Git files - __pycache__, # Ignore Python cache + venv, + .git, + __pycache__, ignore = - E203, # Ignore specific errors (customize as needed) - W503 # Ignore line break before binary operator - + E203, + W503