From 3d755031e49ed6d48a10c2098534affb264a9bd6 Mon Sep 17 00:00:00 2001 From: Quantum Date: Tue, 8 Oct 2024 00:28:59 -0400 Subject: [PATCH] Fix flake8 config --- .flake8 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index b7612d0..48f24e1 100644 --- a/.flake8 +++ b/.flake8 @@ -3,5 +3,7 @@ max-line-length = 120 import-order-style = pycharm enable-extensions = G ignore = - W504, # line break occurred after a binary operator - C814 # missing trailing comma in Python 2 only + # line break occurred after a binary operator + W504, + # missing trailing comma in Python 2 only + C814