Skip to content

Commit 3bc164e

Browse files
committed
review
1 parent 6d547a0 commit 3bc164e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kbcstorage/workspaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def load_tables(self, workspace_id: int | str, table_mapping: dict | List[dict],
159159
if load_type not in ['load', 'load-clone']:
160160
raise ValueError("Invalid load_type: {}, supports only load and load-clone".format(load_type))
161161

162-
url = "/".join([self.base_url, workspace_id, load_type])
162+
url = "/".join([self.base_url, str(workspace_id), load_type])
163163

164164
req = None
165165
if isinstance(table_mapping, dict):

0 commit comments

Comments
 (0)