Skip to content

Commit 31b880c

Browse files
committed
Typing fixes
1 parent fa6ec70 commit 31b880c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry_sdk/integrations/chalice.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
from sentry_sdk._types import MYPY
1313
from sentry_sdk._functools import wraps
1414

15-
import chalice
15+
import chalice # type: ignore
1616
from chalice import Chalice, ChaliceViewError
17-
from chalice.app import EventSourceHandler as ChaliceEventSourceHandler
17+
from chalice.app import EventSourceHandler as ChaliceEventSourceHandler # type: ignore
1818

1919
if MYPY:
2020
from typing import Any
@@ -30,7 +30,7 @@
3030
raise DidNotEnable("Chalice is not installed")
3131

3232

33-
class EventSourceHandler(ChaliceEventSourceHandler):
33+
class EventSourceHandler(ChaliceEventSourceHandler): # type: ignore
3434
def __call__(self, event, context):
3535
# type: (Any, Any) -> Any
3636
hub = Hub.current

0 commit comments

Comments
 (0)