fix: fixed embeds causing errors if init failed
This commit is contained in:
parent
4487a1ba81
commit
8601812c95
1 changed files with 4 additions and 4 deletions
|
@ -303,10 +303,10 @@ class User:
|
|||
"""
|
||||
def __init__(
|
||||
self,
|
||||
color: str,
|
||||
title: str,
|
||||
siteName: str,
|
||||
description: str,
|
||||
color: str = None,
|
||||
title: str = None,
|
||||
siteName: str = None,
|
||||
description: str = None,
|
||||
**kwargs
|
||||
):
|
||||
self.color = color
|
||||
|
|
Loading…
Reference in a new issue