WIP: Added stubs for Guilds and fixed formatting

This commit is contained in:
Profitroll 2025-02-18 21:20:14 +01:00
parent 3ffea8b46b
commit 8e2003b7df
Signed by: profitroll
GPG Key ID: FA35CAB49DACD3B2
3 changed files with 19 additions and 10 deletions

View File

@ -1,3 +1,12 @@
from dataclasses import dataclass
from bson import ObjectId
@dataclass
class PycordGuild:
_id: ObjectId
id: int
def __init__(self) -> None:
raise NotImplementedError()