fix(aurora): don't JSON serialize the Red class

This commit is contained in:
Seaswimmer 2024-05-04 20:55:11 -04:00
parent a22de1d2c2
commit 3f6aec0a82
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -1,6 +1,9 @@
import json
from datetime import datetime, timedelta
from redbot.core.bot import Red
from aurora.models import AuroraBaseModel
@ -12,6 +15,8 @@ class JSONEncoder(json.JSONEncoder):
return str(o)
if isinstance(o, AuroraBaseModel):
return o.to_json()
if isinstance(o, Red):
return None
return super().default(o)