From f537c7f4d522e9bfeab68c02874b9d2a2eff28f5 Mon Sep 17 00:00:00 2001 From: PIG208 <359101898@qq.com> Date: Sat, 22 May 2021 01:40:04 +0800 Subject: [PATCH] lint: Disable E203 that will conflict with Black. --- .flake8 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.flake8 b/.flake8 index ed47090c..23051a18 100644 --- a/.flake8 +++ b/.flake8 @@ -2,6 +2,10 @@ ignore = # Each of these rules are ignored for the explained reason. + # "whitespace before ':'" + # Black disagrees with this. + E203, + # "multiple spaces before operator" # There are several typos here, but also several instances that are # being used for alignment in dict keys/values using the `dict`