mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-30 12:46:39 +00:00
fix: typing 100%
This commit is contained in:
parent
73ec9fab81
commit
fcf16a9059
|
@ -63,11 +63,11 @@ class UserMutationInput:
|
|||
"""Input type for user mutation"""
|
||||
|
||||
username: str
|
||||
directmemberof: Optional[list[str]] = strawberry.field(default_factory=list)
|
||||
memberof: Optional[list[str]] = strawberry.field(default_factory=list)
|
||||
password: Optional[str] = None
|
||||
displayname: Optional[str] = None
|
||||
email: Optional[str] = None
|
||||
directmemberof: Optional[list[str]] = []
|
||||
memberof: Optional[list[str]] = []
|
||||
|
||||
|
||||
@strawberry.input
|
||||
|
|
Loading…
Reference in a new issue