Skip to content

Commit

Permalink
flake8 fix, ignore W503
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmoon79 committed Feb 28, 2021
1 parent 175b45c commit bc5313b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .config/flake8.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max-line-length = 100
statistics = true
ignore = E501,E128
ignore = E501,E128,W503
3 changes: 1 addition & 2 deletions goto_http_redirect_server/goto_http_redirect_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit bc5313b

Please sign in to comment.