mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 00:54:21 -05:00
Additional fixes for opentracing type hints. (#13362)
This commit is contained in:
parent
43adf2521c
commit
908aeac44a
1
changelog.d/13362.misc
Normal file
1
changelog.d/13362.misc
Normal file
@ -0,0 +1 @@
|
||||
Add missing type hints to open tracing module.
|
@ -910,8 +910,8 @@ def tag_args(func: Callable[P, R]) -> Callable[P, R]:
|
||||
def _tag_args_inner(*args: P.args, **kwargs: P.kwargs) -> R:
|
||||
argspec = inspect.getfullargspec(func)
|
||||
for i, arg in enumerate(argspec.args[1:]):
|
||||
set_tag("ARG_" + arg, args[i]) # type: ignore[index]
|
||||
set_tag("args", args[len(argspec.args) :]) # type: ignore[index]
|
||||
set_tag("ARG_" + arg, str(args[i])) # type: ignore[index]
|
||||
set_tag("args", str(args[len(argspec.args) :])) # type: ignore[index]
|
||||
set_tag("kwargs", str(kwargs))
|
||||
return func(*args, **kwargs)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user