Skip to content

Commit

Permalink
Fix application_id cache setter
Browse files Browse the repository at this point in the history
  • Loading branch information
4Kaylum committed Oct 30, 2024
1 parent 580197d commit 4ce4d73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions novus/api/_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ def application_id(self) -> int | None:
return self._application_id
return None

@application_id.setter
def application_id(self, value: int) -> None:
self._application_id = value

def add_guilds(self, *items: Guild) -> None:
for i in items:
self.guild_ids.add(i.id)
Expand Down

0 comments on commit 4ce4d73

Please sign in to comment.