From 9a4b5d6405005179a6f31c42637cfa3c0f50d4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?unde=C6=92ined?= Date: Sun, 18 Aug 2024 03:33:37 +0200 Subject: [PATCH] CHANGE: Adjust flake8 rules to account for E402 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5467b10..c97caa4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,7 @@ ignore = [ "E501", # Line too long (82 > 79 characters) "E701", # Multiple statements on one line (colon) "B902", # Invalid first argument used for method + "E402", # Module level import not at top of file, this rule gets ignored because of wild dependencies ] extend-ignore = [ "E722", # Do not use bare except, specify exception instead