diff options
author | 2020-12-18 00:22:54 +0300 | |
---|---|---|
committer | 2020-12-18 00:22:54 +0300 | |
commit | cbd38cebcc32940de14eaa4af3927430026e9cea (patch) | |
tree | 7660e6eda4854be9a66193ea0e7710028a0a09b4 /backend/models | |
parent | Merge branch 'main' into discord-webhook (diff) |
Sends Embed Asynchronously
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'backend/models')
-rw-r--r-- | backend/models/form.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/models/form.py b/backend/models/form.py index 6c435e7..9a3a8a2 100644 --- a/backend/models/form.py +++ b/backend/models/form.py @@ -66,7 +66,7 @@ class Form(BaseModel): questions: list[Question] name: str description: str - meta: _FormMeta + meta: _FormMeta = _FormMeta() class Config: allow_population_by_field_name = True |