File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,9 +64,7 @@ def SNowInstance():
6464 Wrapper around the standard SNowInstance that always uses CLI-provided credentials.
6565 """
6666 if not _CLI_INSTANCE_URL or not _CLI_INSTANCE_PASSWORD :
67- raise RuntimeError (
68- "Installer requires --instance-url and --instance-password arguments."
69- )
67+ raise RuntimeError ("Installer requires --instance-url and --instance-password arguments." )
7068 return _BaseSNowInstance (
7169 snow_url = _CLI_INSTANCE_URL ,
7270 snow_credentials = ("admin" , _CLI_INSTANCE_PASSWORD ),
@@ -1126,8 +1124,12 @@ def main():
11261124 Entrypoint for package CLI installation command
11271125
11281126 """
1129- parser = argparse .ArgumentParser (description = "Install WorkArena artifacts on a ServiceNow instance." )
1130- parser .add_argument ("--instance-url" , required = True , help = "URL of the target ServiceNow instance." )
1127+ parser = argparse .ArgumentParser (
1128+ description = "Install WorkArena artifacts on a ServiceNow instance."
1129+ )
1130+ parser .add_argument (
1131+ "--instance-url" , required = True , help = "URL of the target ServiceNow instance."
1132+ )
11311133 parser .add_argument (
11321134 "--instance-password" ,
11331135 required = True ,
You can’t perform that action at this time.
0 commit comments