Skip to content

Commit 1580978

Browse files
committed
Black
1 parent 8ac00e2 commit 1580978

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/browsergym/workarena/tasks/scripts/generate_dashboard_configs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,9 @@ def get_all_configs_by_url(url, is_report):
231231
if __name__ == "__main__":
232232

233233
# XXX: Make sure to specific the exact instance on which to generate configs (and not use a random one)
234-
raise NotImplementedError("Make sure to specific instance URL and credentials below, then comment this line.")
234+
raise NotImplementedError(
235+
"Make sure to specific instance URL and credentials below, then comment this line."
236+
)
235237
instance = SNowInstance(snow_url=None, snow_credentials=None)
236238

237239
reports = get_report_urls(instance)

src/browsergym/workarena/tasks/scripts/generate_navigation_tasks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77

88
def get_all_impersonation_users():
9-
raise NotImplementedError("Make sure to specific instance URL and credentials below, then comment this line.")
9+
raise NotImplementedError(
10+
"Make sure to specific instance URL and credentials below, then comment this line."
11+
)
1012
instance = SNowInstance(snow_url=None, snow_credentials=None)
1113
candidate_users = [
1214
u["first_name"] + " " + u["last_name"]

0 commit comments

Comments
 (0)