Skip to content

Commit cb6f693

Browse files
committed
Black
1 parent 6c7ce68 commit cb6f693

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/browsergym/workarena/install.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)