Skip to content

Commit

Permalink
Update model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Luci2015 authored Nov 20, 2023
1 parent 6b6f654 commit 60f7181
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions sign_client/sign_client/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,7 @@ class UserGroupInfo:
def from_dict(cls, dct):
new_dct = {}
for k, v in dct.items():
if k == 'settings':
new_dct[k] = SettingsInfo.from_dict(v)
else:
new_dct[k] = v
new_dct[k] = v
return cls(**new_dct)


Expand Down

0 comments on commit 60f7181

Please sign in to comment.