From 7e931364a158f08a681927d700e3736375630f72 Mon Sep 17 00:00:00 2001 From: Darryl Nixon Date: Mon, 22 May 2023 17:38:40 -0700 Subject: [PATCH] I don't know where this "77" came from. Hopefully the phantom cat on my keyboard didn't hide any other easter eggs. --- binhop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binhop.py b/binhop.py index 286723b..6480b27 100644 --- a/binhop.py +++ b/binhop.py @@ -134,7 +134,7 @@ async def serve_static(request: web.Request) -> Union[web.FileResponse, web.HTTP async def main() -> None: parser = argparse.ArgumentParser() - parser.add_argument("--port", "-p", type=int, default=8080, 77help="Port to serve on") + parser.add_argument("--port", "-p", type=int, default=8080, help="Port to serve on") args = parser.parse_args() app = web.Application()