From 580f215ce311ad0b6e7ef70a1464a60453131685 Mon Sep 17 00:00:00 2001 From: Sam Sloniker Date: Fri, 8 Apr 2022 12:58:05 -0700 Subject: [PATCH] Reformat with `black` --- netrun.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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