Skip to content

Commit

Permalink
🛠️ apply pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
getsantry[bot] committed Sep 27, 2024
1 parent 6ad9499 commit ce3c800
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sentry/event_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,13 @@ def has_pending_commit_resolution(group: Group) -> bool:


@overload
def get_max_crashreports(model: Project | Organization) -> int: ...
def get_max_crashreports(model: Project | Organization) -> int:
...


@overload
def get_max_crashreports(
model: Project | Organization, *, allow_none: Literal[True]
) -> int | None: ...
def get_max_crashreports(model: Project | Organization, *, allow_none: Literal[True]) -> int | None:
...


def get_max_crashreports(model: Project | Organization, *, allow_none: bool = False) -> int | None:
Expand Down

0 comments on commit ce3c800

Please sign in to comment.