WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 347 commits from aurora-pydantic into main
Showing only changes of commit 1b322dfe50 - Show all commits

View file

@ -1,5 +1,6 @@
import sqlite3 import sqlite3
from datetime import datetime, timedelta from datetime import datetime, timedelta
from itertools import chain
from time import time from time import time
from typing import Any, Dict, List, Literal, Optional, Union from typing import Any, Dict, List, Literal, Optional, Union
@ -244,7 +245,7 @@ class Moderation(AuroraGuildModel):
logger.debug( logger.debug(
"Row inserted into moderation_%s!\n%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s", "Row inserted into moderation_%s!\n%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s",
tuple(guild_id, case_safe.values()) tuple(chain({"guild_id": guild_id}.values() + case_safe.values()))
) )
return cls.from_dict(bot=bot, **case) return cls.from_dict(bot=bot, **case)