You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Explicitly export cron symbols for typecheckers (#3072)
Mypy with no_implicit_reexport = true does not see the symbols in sentry_sdk.crons as exported:
my_file.py:10: error: Module "sentry_sdk.crons" does not explicitly export attribute "monitor" [attr-defined]
Adding the symbols to __all__ marks them as exported and silences the error.
0 commit comments