From 93f5d1969dba85ef42ac00fc8864455f6d1a925f Mon Sep 17 00:00:00 2001 From: gnzng Date: Mon, 7 Jul 2025 12:53:06 -0700 Subject: [PATCH] Add .flake8 configuration to ignore line length errors (E501) --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..16520fc --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +ignore = E501 \ No newline at end of file