Browse Source

Fix copy-pasted docstring

pull/29/head
Andreas Bleuler 5 years ago
parent
commit
f9eb637456
  1. 4
      keycloak/keycloak_admin.py

4
keycloak/keycloak_admin.py

@ -179,13 +179,13 @@ class KeycloakAdmin:
def create_realm(self, payload, skip_exists=False): def create_realm(self, payload, skip_exists=False):
""" """
Create a client
Create a realm
ClientRepresentation: http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_realmrepresentation ClientRepresentation: http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_realmrepresentation
:param skip_exists: Skip if Realm already exist. :param skip_exists: Skip if Realm already exist.
:param payload: RealmRepresentation :param payload: RealmRepresentation
:return: Keycloak server response (UserRepresentation)
:return: Keycloak server response (RealmRepresentation)
""" """
data_raw = self.connection.raw_post(URL_ADMIN_REALMS, data_raw = self.connection.raw_post(URL_ADMIN_REALMS,

Loading…
Cancel
Save