Skip to content

Commit 6d31de2

Browse files
committed
Merge branch 'refs/heads/main' into feature/refactor-routing
2 parents 1ade17c + 77fc5e0 commit 6d31de2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

recce/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.27.0.dev0
1+
1.28.0.dev0

recce/models/run.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ def create(self, run: Run):
1818
def find_run_by_id(self, run_id):
1919
for run in self._runs:
2020
if str(run_id) == str(run.run_id):
21+
if run.params and "primary_keys" in run.params:
22+
run.params["primary_keys"] = [key.replace('"', "") for key in run.params["primary_keys"]]
23+
2124
return run
2225

2326
return None

0 commit comments

Comments
 (0)