Skip to content

Commit dc787c6

Browse files
committed
Reset change done to satisfy checks
1 parent 2ac4125 commit dc787c6

File tree

1 file changed

+1
-1
lines changed
  • ansible_base/authentication/authenticator_plugins

1 file changed

+1
-1
lines changed

ansible_base/authentication/authenticator_plugins/ldap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def validate(self, attrs):
363363
class LDAPSettings(BaseLDAPSettings):
364364
def __init__(self, prefix: str = 'AUTH_LDAP_', defaults: dict = {}):
365365
# This init method double checks the passed defaults while initializing a settings objects
366-
super().__init__(prefix, defaults)
366+
super(LDAPSettings, self).__init__(prefix, defaults)
367367

368368
# SERVER_URI needs to be a string, not an array
369369
setattr(self, 'SERVER_URI', ','.join(defaults['SERVER_URI']))

0 commit comments

Comments
 (0)