Browse Source
Merge pull request #67 from chmller/patch-1
make data-parameter optional
pull/75/head
Marcos Pereira
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
keycloak/connection.py
|
|
@ -199,7 +199,7 @@ class ConnectionManager(object): |
|
|
|
raise KeycloakConnectionError( |
|
|
|
"Can't connect to server (%s)" % e) |
|
|
|
|
|
|
|
def raw_delete(self, path, data, **kwargs): |
|
|
|
def raw_delete(self, path, data={}, **kwargs): |
|
|
|
""" Submit delete request to the path. |
|
|
|
|
|
|
|
:arg |
|
|
|