From 404b0d31d17a41e4ad6724263a9b735b067ba5fa Mon Sep 17 00:00:00 2001 From: Simon Billinge Date: Thu, 4 Jul 2024 05:37:13 -0400 Subject: [PATCH] ignore long lines in test_helpers --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index 49384350a..5473b48e7 100644 --- a/.flake8 +++ b/.flake8 @@ -10,3 +10,5 @@ max-line-length = 115 # Ignore some style 'errors' produced while formatting by 'black' (see link below) # https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#labels-why-pycodestyle-warnings extend-ignore = E203 +per-file-ignores = + tests/test_helpers.py: E501