Skip to content

Commit df96f53

Browse files
committed
lint
1 parent 183ea48 commit df96f53

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ def __parse_tool(
8686
name=name,
8787
desc=schema.description,
8888
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+
),
9092
# create a read-only values for the maps to prevent mutation
9193
required_authn_params=types.MappingProxyType(authn_params),
9294
auth_service_token_getters=types.MappingProxyType(auth_token_getters),

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
from aiohttp import ClientSession
3030

31+
3132
class ToolboxTool:
3233
"""
3334
A callable proxy object representing a specific tool on a remote Toolbox server.

0 commit comments

Comments
 (0)