Skip to content

Commit 6b90b08

Browse files
committed
Ignore some untyped dict operations
1 parent c2443d2 commit 6b90b08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphdatascience/query_runner/aura_db_query_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ def _remote_write_back(
124124
db_arrow_config = params["config"].pop("arrowConfiguration", {}) # type: ignore
125125
self._inject_arrow_config(db_arrow_config)
126126

127-
job_id = params["config"]["jobId"] if "jobId" in params["config"] else str(uuid4())
128-
params["config"]["jobId"] = job_id
127+
job_id = params["config"]["jobId"] if "jobId" in params["config"] else str(uuid4()) # type: ignore
128+
params["config"]["jobId"] = job_id # type: ignore
129129

130130
params["config"]["writeToResultStore"] = True # type: ignore
131131

0 commit comments

Comments
 (0)