We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ade17c + 77fc5e0 commit 6d31de2Copy full SHA for 6d31de2
recce/VERSION
@@ -1 +1 @@
1
-1.27.0.dev0
+1.28.0.dev0
recce/models/run.py
@@ -18,6 +18,9 @@ def create(self, run: Run):
18
def find_run_by_id(self, run_id):
19
for run in self._runs:
20
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
+
24
return run
25
26
return None
0 commit comments