File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,9 @@ def __parse_tool(
86
86
name = name ,
87
87
desc = schema .description ,
88
88
params = [p .to_param () for p in params ],
89
- params_metadata = types .MappingProxyType ({p .name : (p .type , p .description ) for p in schema .parameters }),
89
+ params_metadata = types .MappingProxyType (
90
+ {p .name : (p .type , p .description ) for p in schema .parameters }
91
+ ),
90
92
# create a read-only values for the maps to prevent mutation
91
93
required_authn_params = types .MappingProxyType (authn_params ),
92
94
auth_service_token_getters = types .MappingProxyType (auth_token_getters ),
Original file line number Diff line number Diff line change 28
28
29
29
from aiohttp import ClientSession
30
30
31
+
31
32
class ToolboxTool :
32
33
"""
33
34
A callable proxy object representing a specific tool on a remote Toolbox server.
You can’t perform that action at this time.
0 commit comments