From 774df7861772f03b5a6b0fe6fb717a135b3215f2 Mon Sep 17 00:00:00 2001 From: KevinMusgrave Date: Mon, 16 Jan 2023 14:36:32 -0500 Subject: [PATCH] Fixed .flake8 file --- .flake8 | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.flake8 b/.flake8 index 8e7514b4..23df87ab 100644 --- a/.flake8 +++ b/.flake8 @@ -1,12 +1,18 @@ [flake8] extend-ignore = - E266 # too many leading '#' for block comment - E203 # whitespace before ':' - E402 # module level import not at top of file - E501 # line too long - E741 # ambiguous variable names - E265 # block comment should start with # + # too many leading '#' for block comment + E266 + # whitespace before ':' + E203 + # module level import not at top of file + E402 + # line too long + E501 + # ambiguous variable names + E741 + # block comment should start with # + E265 per-file-ignores = __init__.py:F401 \ No newline at end of file