Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Update datatypes.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TurnrDev authored Oct 16, 2023
1 parent 6602e84 commit 9387a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trainerdex/discord_bot/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def from_mapping(cls, mapping: Mapping) -> Self:
return cls(**{k: v for k, v in mapping.items() if k in inspect.signature(cls).parameters})


@dataclass
class GlobalConfig(_MongoDBDocument):
@dataclass(frozen=True)
class GlobalConfig:
embed_footer: str = "Provided with ❤️ by TrainerDex"
notice: str | None = None

Expand Down

0 comments on commit 9387a40

Please sign in to comment.