Skip to content

Commit 0be92a4

Browse files
Removed dicts from the serialization
1 parent 65a96b0 commit 0be92a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth0/authentication/back_channel_login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def back_channel_login(
4949
if authorization_details is not None:
5050
if isinstance(authorization_details, str):
5151
data["authorization_details"] = authorization_details
52-
elif isinstance(authorization_details, (list, dict)):
52+
elif isinstance(authorization_details, (list)):
5353
data["authorization_details"] = json.dumps(authorization_details)
5454

5555
data.update(kwargs)

0 commit comments

Comments
 (0)