Skip to content

Commit 3415f87

Browse files
committed
[threading] Remove ellipsis from type hints
1 parent cca571a commit 3415f87

File tree

1 file changed

+2
-2
lines changed
  • instrumentation/opentelemetry-instrumentation-threading/src/opentelemetry/instrumentation/threading

1 file changed

+2
-2
lines changed

instrumentation/opentelemetry-instrumentation-threading/src/opentelemetry/instrumentation/threading/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ def _uninstrument_thread_pool():
132132
def __wrap_threading_start(
133133
call_wrapped: Callable[[], None],
134134
instance: HasOtelContext,
135-
args: ...,
136-
kwargs: ...,
135+
args: tuple[()],
136+
kwargs: dict[str, Any],
137137
) -> None:
138138
instance._otel_context = context.get_current()
139139
return call_wrapped(*args, **kwargs)

0 commit comments

Comments
 (0)