We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5f557 commit c61eb02Copy full SHA for c61eb02
sentry_sdk/transport.py
@@ -579,7 +579,7 @@ class AsyncHttpTransport(HttpTransportCore):
579
def __init__(self: Self, options: Dict[str, Any]) -> None:
580
super().__init__(options)
581
# Requires event loop at init time
582
- self._loop = asyncio.get_running_loop()
+ self.loop: asyncio.AbstractEventLoop = asyncio.get_running_loop()
583
self.background_tasks: set[asyncio.Task[None]] = set()
584
585
def _get_header_value(self: Self, response: Any, header: str) -> Optional[str]:
0 commit comments