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 2f6965f + e5271ed commit 6178640Copy full SHA for 6178640
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