Skip to content

Commit

Permalink
fix(usergroup): fixes create_object method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
pallabpain authored and ankitrgadiya committed Jul 21, 2023
1 parent 583c074 commit 15b878d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riocli/usergroup/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def find_object(self, client: Client) -> typing.Any:

return usergroup

def create_object(self, client: Client) -> typing.Any:
def create_object(self, client: Client, **kwargs) -> typing.Any:
usergroup = self.unmunchify()
payload = self._modify_payload(usergroup)
# Inject the user group name in the payload
Expand Down

0 comments on commit 15b878d

Please sign in to comment.