From 35d0f0d3ce3972f3b2ddf77b3072b376fe3853e8 Mon Sep 17 00:00:00 2001 From: KT Date: Fri, 2 Feb 2024 23:12:49 +0800 Subject: [PATCH] Add E704 to the flake8 ignore list according to Black documentation. --- .flake8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index c39efc79..eb1a7f74 100644 --- a/.flake8 +++ b/.flake8 @@ -6,6 +6,7 @@ exclude = tests, test.py # D105: Missing docstring in magic method # D106: Missing docstring Model.Config # D419: Docstring is empty +# E704: Multiple statements on one line (def) # S101: Use of assert for type checking # S303: Use of md5 # S311: Use of pseudo-random generators @@ -14,7 +15,8 @@ exclude = tests, test.py ignore = A001, A002, A003, C408, - D105, D106, D419 + D105, D106, D419, + E704, S101, S303, S311, S324, W503,