From 794ce56040a3c445dfd38bfcf5f663808d64d607 Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 22 Aug 2024 12:33:30 -0400 Subject: [PATCH] misc(aurora): changed a docstring --- aurora/models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/models/base.py b/aurora/models/base.py index 0e2ec5f..43c9d89 100644 --- a/aurora/models/base.py +++ b/aurora/models/base.py @@ -18,7 +18,7 @@ class AuroraBaseModel(BaseModel): return dump(self.dump(), file, indent=indent, **kwargs) if file else dumps(self.dump(), indent=indent, **kwargs) class AuroraGuildModel(AuroraBaseModel): - """Subclass of AuroraBaseModel that includes a guild_id attribute and a guild attribute, and a modified to_json() method to match.""" + """Subclass of AuroraBaseModel that includes a guild_id attribute and a guild attribute.""" model_config = ConfigDict(ignored_types=(Red, Guild), arbitrary_types_allowed=True) guild_id: int guild: Optional[Guild] = None