Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 43562dd

Browse files
committed
Remove unnecessary type param from update_template_universal_login
1 parent 6ebd7a2 commit 43562dd

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

auth0/v3/management/branding.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,5 @@ def update_template_universal_login(self, body):
9191

9292
return self.client.put(
9393
self._url("templates", "universal-login"),
94-
type="put_universal-login_body",
9594
body={"template": body},
9695
)

auth0/v3/test/management/test_branding.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,5 @@ def test_update_template_universal_login(self, mock_rc):
7070

7171
api.put.assert_called_with(
7272
"https://domain/api/v2/branding/templates/universal-login",
73-
type="put_universal-login_body",
7473
body={"template": {"a": "b", "c": "d"}},
7574
)

0 commit comments

Comments
 (0)