From 86fdea01f2c3640fbf82dd7aaf923ad9e7bf0ede Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 21 Mar 2024 10:27:09 +0100 Subject: [PATCH] Explicit reexport of types (#2866) * Explicitly reexport types to make strict mypy setups happy --- sentry_sdk/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sentry_sdk/types.py b/sentry_sdk/types.py index 5c46de7f88..f7397adee1 100644 --- a/sentry_sdk/types.py +++ b/sentry_sdk/types.py @@ -12,3 +12,5 @@ if TYPE_CHECKING: from sentry_sdk._types import Event, Hint # noqa: F401 + + __all__ = ["Event", "Hint"]