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 fa6ec70 commit 31b880cCopy full SHA for 31b880c
sentry_sdk/integrations/chalice.py
@@ -12,9 +12,9 @@
12
from sentry_sdk._types import MYPY
13
from sentry_sdk._functools import wraps
14
15
-import chalice
+import chalice # type: ignore
16
from chalice import Chalice, ChaliceViewError
17
-from chalice.app import EventSourceHandler as ChaliceEventSourceHandler
+from chalice.app import EventSourceHandler as ChaliceEventSourceHandler # type: ignore
18
19
if MYPY:
20
from typing import Any
@@ -30,7 +30,7 @@
30
raise DidNotEnable("Chalice is not installed")
31
32
33
-class EventSourceHandler(ChaliceEventSourceHandler):
+class EventSourceHandler(ChaliceEventSourceHandler): # type: ignore
34
def __call__(self, event, context):
35
# type: (Any, Any) -> Any
36
hub = Hub.current
0 commit comments