Reformat with black

This commit is contained in:
Samuel Sloniker 2022-04-08 12:58:05 -07:00
parent 426585d412
commit 580f215ce3

View File

@ -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