From bf8aea1ac771f802e0112efa858d058ab7f48afd Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Sun, 17 May 2020 21:01:57 -0700 Subject: [PATCH] Ignore warning from flake8 --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e60b1bb2..212a21c7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,7 +18,9 @@ ignore = # Comparing types instead of isinstance E721, # Assigning lambda expression - E731 + E731, + # Do not use variables named ‘l’, ‘O’, or ‘I’ + E741 max-line-length = 120 [bdist_wheel]