From 4c12a210c4c28608a2943d7d53c03e711e3964cd Mon Sep 17 00:00:00 2001 From: Dan Schwarz Date: Mon, 13 Mar 2023 20:48:45 -0400 Subject: [PATCH] Ignore warning W503 see: https://www.flake8rules.com/rules/W503.html for justification --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 21fd7bd..6efbecd 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,4 @@ [flake8] exclude=build,tests,tmp,venv,toot/tui/scroll.py -ignore=E128 +ignore=E128,W503 max-line-length=120