diff --git a/netrun.py b/netrun.py index b945c08..fb1b79c 100644 --- a/netrun.py +++ b/netrun.py @@ -27,9 +27,17 @@ def yn(question, options="yn"): return response -parser = argparse.ArgumentParser(description="Securely run a script from the Internet") + +parser = argparse.ArgumentParser( + description="Securely run a script from the Internet" +) parser.add_argument("url", help="URL of the script") -parser.add_argument("-s", "--skip-pager", action="store_true", help="Skip pager and confirmation; run script immediately") +parser.add_argument( + "-s", + "--skip-pager", + action="store_true", + help="Skip pager and confirmation; run script immediately", +) args = parser.parse_args() url = args.url