Skip to content

Commit bd50f18

Browse files
committed
variable name fix
1 parent d07f2f7 commit bd50f18

File tree

1 file changed

+1
-1
lines changed
  • packages/toolbox-core/src/toolbox_core

1 file changed

+1
-1
lines changed

packages/toolbox-core/src/toolbox_core/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ async def load_toolset(
192192
in the toolset.
193193
"""
194194
# Request the definition of the tool from the server
195-
url = f"{self.__url}/api/toolset/{toolset_name or ''}"
195+
url = f"{self.__base_url}/api/toolset/{name or ''}"
196196
async with self.__session.get(url) as response:
197197
json = await response.json()
198198
manifest: ManifestSchema = ManifestSchema(**json)

0 commit comments

Comments
 (0)