ruff: Fix C418 Unnecessary `dict` literal passed to `dict()`.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-04-25 17:46:57 -07:00 committed by Anders Kaseorg
parent 9db3451333
commit 5ecff88c1b
1 changed files with 14 additions and 17 deletions

View File

@ -97,8 +97,8 @@ class ZulipSCIMUser(SCIMUser):
"givenName": first_name,
"familyName": last_name,
}
d = dict(
{
return {
"schemas": [scim_constants.SchemaURI.USER],
"id": self.obj.id,
"userName": self.obj.delivery_email,
@ -112,9 +112,6 @@ class ZulipSCIMUser(SCIMUser):
# of this value.
"meta": self.meta,
}
)
return d
def from_dict(self, d: Dict[str, Any]) -> None:
"""Consume a dictionary conforming to the SCIM User Schema. The