Skip to content

Commit

Permalink
Ignore override
Browse files Browse the repository at this point in the history
  • Loading branch information
nnsnodnb committed Dec 29, 2024
1 parent 694174a commit e59db6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kalyke/models/apns_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def make_headers(self) -> Dict[str, str]:


@dataclass(frozen=True)
class LiveActivityApnsConfig(ApnsConfig):
class LiveActivityApnsConfig(ApnsConfig): # type: ignore[override]
push_type: ApnsPushType = field(default=ApnsPushType.LIVEACTIVITY, init=False)

def __post_init__(self):
Expand All @@ -52,7 +52,7 @@ def __post_init__(self):


@dataclass(frozen=True)
class VoIPApnsConfig(ApnsConfig):
class VoIPApnsConfig(ApnsConfig): # type: ignore[override]
push_type: ApnsPushType = field(default=ApnsPushType.VOIP, init=False)

def __post_init__(self):
Expand Down

0 comments on commit e59db6a

Please sign in to comment.