From 1319b8a67bd7c5ea0b485d6632dd341c55d364bc Mon Sep 17 00:00:00 2001 From: Ryo Suzumoto Date: Sat, 22 Jan 2022 00:32:21 +0900 Subject: [PATCH] add E501 to ignore for flake8 --- .flake8 | 1 + 1 file changed, 1 insertion(+) diff --git a/.flake8 b/.flake8 index 7b2125502..4de76c1af 100644 --- a/.flake8 +++ b/.flake8 @@ -3,6 +3,7 @@ max-line-length = 100 ignore = # black と競合するので E203, + E501, W503, W504, # https://github.com/ut-issl/c2a-core/issues/195