Skip to content

Commit 70e9218

Browse files
committed
hotfix(datasource): coercion
1 parent 2f5c3d9 commit 70e9218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polytope_server/common/datasource/datasource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def match(ds_config, coerced_ur: Dict[str, Any], user: User) -> str:
138138
if isinstance(coerced_ur_copy[key], list):
139139
coerced_ur[key] = "/".join(coerced_ur_copy[key])
140140
else:
141-
coerced_ur[key] = str(coerced_ur_copy[key])
141+
coerced_ur[key] = coerced_ur_copy[key]
142142
return "success"
143143

144144
@staticmethod

0 commit comments

Comments
 (0)