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__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
color: str,
|
color: str = None,
|
||||||
title: str,
|
title: str = None,
|
||||||
siteName: str,
|
siteName: str = None,
|
||||||
description: str,
|
description: str = None,
|
||||||
**kwargs
|
**kwargs
|
||||||
):
|
):
|
||||||
self.color = color
|
self.color = color
|
||||||
|
|
Loading…
Reference in a new issue