Skip to content

Commit 10d85f6

Browse files
committed
ref(transport): Fix typing errors
GH-4582
1 parent 42d3a34 commit 10d85f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry_sdk/transport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
HTTP2_ENABLED = True
2424
except ImportError:
2525
HTTP2_ENABLED = False
26-
httpcore = None
26+
httpcore = None # type: ignore
2727

2828
try:
2929
import httpcore # noqa: F401
@@ -597,7 +597,7 @@ def __init__(self: Self, options: Dict[str, Any]) -> None:
597597

598598
else:
599599

600-
class AsyncHttpTransport(HttpTransportCore):
600+
class AsyncHttpTransport(HttpTransportCore): # type: ignore
601601
def __init__(self: Self, options: Dict[str, Any]) -> None:
602602
super().__init__(options)
603603
# Requires event loop at init time

0 commit comments

Comments
 (0)