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 committed Aug 3, 2023
1 parent 6b3c867 commit d74f539
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 d74f539

Please sign in to comment.