From bc5313b446294723145721a2125ada24c5e13500 Mon Sep 17 00:00:00 2001 From: jtmoon79 <815261+jtmoon79@users.noreply.github.com> Date: Sat, 27 Feb 2021 19:25:28 -0800 Subject: [PATCH] flake8 fix, ignore W503 --- .config/flake8.ini | 2 +- goto_http_redirect_server/goto_http_redirect_server.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/flake8.ini b/.config/flake8.ini index 1150aef..5009fb9 100644 --- a/.config/flake8.ini +++ b/.config/flake8.ini @@ -1,4 +1,4 @@ [flake8] max-line-length = 100 statistics = true -ignore = E501,E128 \ No newline at end of file +ignore = E501,E128,W503 \ No newline at end of file diff --git a/goto_http_redirect_server/goto_http_redirect_server.py b/goto_http_redirect_server/goto_http_redirect_server.py index 09641fe..f6d2557 100755 --- a/goto_http_redirect_server/goto_http_redirect_server.py +++ b/goto_http_redirect_server/goto_http_redirect_server.py @@ -1537,8 +1537,7 @@ def process_options() -> typing.Tuple[ parser = argparse.ArgumentParser( description=__doc__ - + """\ - + + """ HTTP %s %s reply server. Load this server with redirects of "from path" and "to URL" and let it run indefinitely. Reload the running server by signaling the process or HTTP requesting the RELOAD_PATH.