Skip to content

Commit 37032c5

Browse files
Fix typing
1 parent f9a990f commit 37032c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry_sdk/integrations/concurrent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def wrapped_fn(*args, **kwargs):
5252

5353
future = func(self, wrapped_fn, *args, **kwargs)
5454

55-
def report_exceptions(future: Future):
56-
# type: (Future) -> None
55+
def report_exceptions(future):
56+
# type: (Future[Any]) -> None
5757
exception = future.exception()
5858
integration = sentry_sdk.get_client().get_integration(ConcurrentIntegration)
5959

0 commit comments

Comments
 (0)