From ef5a0e71dcc6946d6884bae304d6681a0546004f Mon Sep 17 00:00:00 2001 From: odrling Date: Thu, 25 Mar 2021 16:18:03 +0100 Subject: [PATCH] [flake8] linebreak after binary op --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index 0c71ef1..aa40339 100644 --- a/.flake8 +++ b/.flake8 @@ -8,6 +8,8 @@ ignore = E731, # line break before binary operator W503, + # line break after binary operator + W504, # blank line at end of file W391, # whitespace around arithmetic operator