From 01a4dc094287004eed32cfd2e5b9378339aa635d Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 5 Jan 2023 19:14:42 +0100 Subject: [PATCH] Fix flake8 config syntax making the test crash --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 71be731f..a6bb5be2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,5 +4,5 @@ ignore = E128, E731, E722, - W503 # Black formatter conflict - E203 # Black formatter conflict + W503, + E203