From f6f6c978809c47b4a68ba2a47ee757817c436a42 Mon Sep 17 00:00:00 2001 From: Italo Maia Date: Tue, 18 Feb 2025 18:08:48 +0100 Subject: [PATCH] ignoring flake8 rules that are not being enforced: E231 --- .pre-commit-config.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5db667b..5428683 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,6 +17,11 @@ repos: hooks: - id: flake8 types: [python] + args: + [ + "--ignore", + "E231" + ] - repo: local hooks: - id: pylint