fix(aurora): fixed a missing parameter
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Successful in 27s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 40s

This commit is contained in:
Seaswimmer 2024-05-06 14:48:16 -04:00
parent 1e865643a0
commit 9c7e0b0b89
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -264,6 +264,9 @@ class Moderation(AuroraGuildModel):
case_safe["metadata"],
)
for change in case["changes"]:
change.update({"bot": bot})
return cls.from_dict(bot=bot, data=case)
class Change(AuroraBaseModel):