Skip to content

Commit 5cc8978

Browse files
committed
lint
1 parent 4adda1b commit 5cc8978

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ def __init__(
8383
# the following properties are set to help anyone that might inspect it determine usage
8484
self.__name__ = name
8585
self.__doc__ = self._create_docstring()
86-
self.__signature__ = Signature(parameters=inspect_type_params, return_annotation=str)
86+
self.__signature__ = Signature(
87+
parameters=inspect_type_params, return_annotation=str
88+
)
8789
self.__annotations__ = {p.name: p.annotation for p in inspect_type_params}
8890
# TODO: self.__qualname__ ??
8991

@@ -276,6 +278,7 @@ def bind_parameters(
276278
bound_params=types.MappingProxyType(all_bound_params),
277279
)
278280

281+
279282
def identify_required_authn_params(
280283
req_authn_params: Mapping[str, list[str]], auth_service_names: Iterable[str]
281284
) -> dict[str, list[str]]:

0 commit comments

Comments
 (0)