File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ def __init__(
83
83
# the following properties are set to help anyone that might inspect it determine usage
84
84
self .__name__ = name
85
85
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
+ )
87
89
self .__annotations__ = {p .name : p .annotation for p in inspect_type_params }
88
90
# TODO: self.__qualname__ ??
89
91
@@ -276,6 +278,7 @@ def bind_parameters(
276
278
bound_params = types .MappingProxyType (all_bound_params ),
277
279
)
278
280
281
+
279
282
def identify_required_authn_params (
280
283
req_authn_params : Mapping [str , list [str ]], auth_service_names : Iterable [str ]
281
284
) -> dict [str , list [str ]]:
You can’t perform that action at this time.
0 commit comments