Skip to content

Commit

Permalink
Merge pull request #463 from auth0/fix-update_template_universal_login
Browse files Browse the repository at this point in the history
Remove unnecessary type param from update_template_universal_login
  • Loading branch information
adamjmcgrath authored Jan 19, 2023
2 parents 6ebd7a2 + 43562dd commit e82e59d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion auth0/v3/management/branding.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,5 @@ def update_template_universal_login(self, body):

return self.client.put(
self._url("templates", "universal-login"),
type="put_universal-login_body",
body={"template": body},
)
1 change: 0 additions & 1 deletion auth0/v3/test/management/test_branding.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,5 @@ def test_update_template_universal_login(self, mock_rc):

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

0 comments on commit e82e59d

Please sign in to comment.