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.
1 parent d07f2f7 commit bd50f18Copy full SHA for bd50f18
packages/toolbox-core/src/toolbox_core/client.py
@@ -192,7 +192,7 @@ async def load_toolset(
192
in the toolset.
193
"""
194
# Request the definition of the tool from the server
195
- url = f"{self.__url}/api/toolset/{toolset_name or ''}"
+ url = f"{self.__base_url}/api/toolset/{name or ''}"
196
async with self.__session.get(url) as response:
197
json = await response.json()
198
manifest: ManifestSchema = ManifestSchema(**json)
0 commit comments