Skip to content

Commit f9bb367

Browse files
committed
chore: Fix mypy
1 parent 4c09f32 commit f9bb367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/tornado.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async def sentry_execute_request_handler(self, *args, **kwargs):
7373
else:
7474

7575
@coroutine # type: ignore
76-
def sentry_execute_request_handler(self, *args, **kwargs):
76+
def sentry_execute_request_handler(self, *args, **kwargs): # type: ignore
7777
# type: (RequestHandler, *Any, **Any) -> Any
7878
with _handle_request_impl(self):
7979
result = yield from old_execute(self, *args, **kwargs)

0 commit comments

Comments
 (0)