Skip to content

Commit d0ccf8d

Browse files
committed
Format code
1 parent 3b28c4c commit d0ccf8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graphdatascience/query_runner/progress/query_progress_logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def _log(
8585
new_progress = parsed_progress - pbar.n
8686
pbar.update(new_progress)
8787
else:
88-
pbar.refresh() # show latest elapsed time + postfix
88+
pbar.refresh() # show latest elapsed time + postfix
8989
except Exception as e:
9090
# Do nothing if the procedure either:
9191
# * has not started yet,

graphdatascience/query_runner/progress/query_progress_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def root_task_with_progress(self, job_id: str, database: Optional[str] = None) -
2828
+ " RETURN taskName, progress, status"
2929
+ " LIMIT 1",
3030
database,
31-
).squeeze() # expect at exactly one row (query will fail if not existing)
31+
).squeeze() # expect at exactly one row (query will fail if not existing)
3232

3333
progress_percent = progress["progress"]
3434
root_task_name = progress["taskName"].split("|--")[-1][1:]

0 commit comments

Comments
 (0)