Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-pimenta-DME committed Dec 21, 2023
1 parent 7b35dd3 commit 59af493
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions identityutils/keycloak_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,8 @@ def create_client(self, payload, skip_exists=True):
return self.keycloak_admin.create_client(payload=payload, skip_exists=skip_exists)


def create_group(self, id, name, skip_exists=True):
def create_group(self, name, skip_exists=True):
payload = {
"id": id,
"name": name
}
return self.keycloak_admin.create_group(payload=payload, skip_exists=skip_exists)
Expand Down

0 comments on commit 59af493

Please sign in to comment.