From c04b2e7812ebd48c2d9273122deef888483bc9f6 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 19 Dec 2023 22:07:37 -0800 Subject: [PATCH] Project Lawful start URL in --help --- args.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/args.py b/args.py index 2198a1d..fb36083 100644 --- a/args.py +++ b/args.py @@ -45,7 +45,9 @@ def _command_line_parser() -> ArgumentParser: '--timeout', help='How long to wait for HTTP requests, in seconds', default=30) - parser.add_argument('url', help='URL to retrieve') + parser.add_argument( + 'url', + help='URL to retrieve (example: https://www.projectlawful.com/posts/4582 )') return parser -- 2.44.1