fix(aurora): fixed a syntax error

This commit is contained in:
Seaswimmer 2024-05-04 18:18:57 -04:00
parent d70f2bf5f1
commit ea280c2d62
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -109,7 +109,7 @@ class Change(AuroraBaseModel):
@classmethod
def from_dict(cls, bot: Red, data: dict) -> "Change":
return cls(bot=bot **data)
return cls(bot=bot, **data)
class PartialUser(AuroraBaseModel):
id: int