Skip to content

Commit 7b68600

Browse files
ci(starlette): Add type ignore (#6228)
1 parent 4902c5e commit 7b68600

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sentry_sdk/integrations/starlette.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def _is_async_callable(obj: "Any") -> bool:
475475
obj = obj.func
476476

477477
return iscoroutinefunction(obj) or (
478-
callable(obj) and iscoroutinefunction(obj.__call__)
478+
callable(obj) and iscoroutinefunction(obj.__call__) # type: ignore[operator]
479479
)
480480

481481

0 commit comments

Comments
 (0)