Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 37d5a24

Browse files
committed
If no args then I should try to use them.
1 parent 731b7d5 commit 37d5a24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/oidcrp/rp_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ def backchannel_logout(client, request='', request_args=None):
948948
if request:
949949
req = BackChannelLogoutRequest().from_urlencoded(as_unicode(request))
950950
else:
951-
req = BackChannelLogoutRequest(**request_args)
951+
req = BackChannelLogoutRequest()
952952

953953
_context = client.client_get("service_context")
954954
kwargs = {

0 commit comments

Comments
 (0)