Skip to content

Commit b127938

Browse files
committed
fix pipeline
1 parent d0f9db3 commit b127938

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ def response_hook(span: Span, environ: WSGIEnvironment, status: str, response_he
278278

279279

280280
T = TypeVar("T")
281-
RequestHook = Callable[[trace.Span, WSGIEnvironment], None]
281+
RequestHook = Callable[[trace.Span, "WSGIEnvironment"], None]
282282
ResponseHook = Callable[
283-
[trace.Span, WSGIEnvironment, str, list[tuple[str, str]]], None
283+
[trace.Span, "WSGIEnvironment", str, list[tuple[str, str]]], None
284284
]
285285

286286
_HTTP_VERSION_PREFIX = "HTTP/"

0 commit comments

Comments
 (0)