Skip to content

Commit 63e43d5

Browse files
Kludexemdnetoxrmx
authored
[threading] Remove ellipsis from type hints (#3245)
Co-authored-by: Emídio Neto <[email protected]> Co-authored-by: Riccardo Magliocchetti <[email protected]>
1 parent 9587360 commit 63e43d5

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

+2-2
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)