Skip to content

Commit

Permalink
fix: Explicitly export cron symbols for typecheckers
Browse files Browse the repository at this point in the history
  • Loading branch information
spladug committed Jun 11, 2024
1 parent 6a9d152 commit 88d4259
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions sentry_sdk/crons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
from sentry_sdk.crons.api import capture_checkin # noqa
from sentry_sdk.crons.consts import MonitorStatus # noqa
from sentry_sdk.crons.decorator import monitor # noqa
from sentry_sdk.crons.api import capture_checkin
from sentry_sdk.crons.consts import MonitorStatus
from sentry_sdk.crons.decorator import monitor


__all__ = [
"capture_checkin",
"MonitorStatus",
"monitor",
]

0 comments on commit 88d4259

Please sign in to comment.