[threading] Remove ellipsis from type hints (#3245)
Co-authored-by: Emídio Neto <9735060+emdneto@users.noreply.github.com> Co-authored-by: Riccardo Magliocchetti <riccardo.magliocchetti@gmail.com>
This commit is contained in:
parent
95873604ab
commit
63e43d5222
|
|
@ -132,8 +132,8 @@ class ThreadingInstrumentor(BaseInstrumentor):
|
|||
def __wrap_threading_start(
|
||||
call_wrapped: Callable[[], None],
|
||||
instance: HasOtelContext,
|
||||
args: ...,
|
||||
kwargs: ...,
|
||||
args: tuple[()],
|
||||
kwargs: dict[str, Any],
|
||||
) -> None:
|
||||
instance._otel_context = context.get_current()
|
||||
return call_wrapped(*args, **kwargs)
|
||||
|
|
|
|||
Loading…
Reference in New Issue