Skip to content

Commit aeb6830

Browse files
committed
fix type
1 parent 7f9e04e commit aeb6830

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sentry_sdk/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ def make_transport(options: "Dict[str, Any]") -> "Optional[Transport]":
12271227
"You tried to use AsyncHttpTransport but don't have httpcore[asyncio] installed. Falling back to sync transport."
12281228
)
12291229

1230-
transport = None # type: Optional[Transport]
1230+
transport: "Optional[Transport]" = None
12311231

12321232
if isinstance(ref_transport, Transport):
12331233
transport = ref_transport

0 commit comments

Comments
 (0)