Skip to content

Commit 89bd8cc

Browse files
committed
fix: search variables returned type
1 parent ffd13a3 commit 89bd8cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datashield_opal/impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def list_table_variables(self, table) -> list:
188188
def list_taxonomies(self) -> list:
189189
return self._get(UriBuilder(["system", "conf", "taxonomies"]).build()).fail_on_error().send().from_json()
190190

191-
def search_variables(self, query) -> list:
191+
def search_variables(self, query) -> dict:
192192
return (
193193
self
194194
._get(UriBuilder(["datasources", "variables", "_search"]).query("query", query).build())

0 commit comments

Comments
 (0)