Skip to content

Commit

Permalink
pass parent=self to the WrapperAuthenticator
Browse files Browse the repository at this point in the history
  • Loading branch information
lahwaacz committed Jul 19, 2024
1 parent 0aa88c6 commit a54fc86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion multiauthenticator/multiauthenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def check_blocked_users(self, username, authentication=None):

service_name = authenticator_configuration.pop("service_name", None)

authenticator = WrapperAuthenticator(**authenticator_configuration)
authenticator = WrapperAuthenticator(
parent=self, **authenticator_configuration
)

if service_name is not None:
if PREFIX_SEPARATOR in service_name:
Expand Down

0 comments on commit a54fc86

Please sign in to comment.