summaryrefslogtreecommitdiffstats
path: root/api/schemas.py
diff options
context:
space:
mode:
Diffstat (limited to 'api/schemas.py')
-rw-r--r--api/schemas.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/schemas.py b/api/schemas.py
index 97b8169..59f9a12 100644
--- a/api/schemas.py
+++ b/api/schemas.py
@@ -35,8 +35,8 @@ class Account(Schema):
note: str
avatar: str
avatar_static: str
- header: str
- header_static: str
+ header: str | None = Field(...)
+ header_static: str | None = Field(...)
locked: bool
fields: list[AccountField]
emojis: list[CustomEmoji]