1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-30 15:38:53 +00:00

Reformat everything.

This commit is contained in:
Felix Fontein 2025-11-01 12:08:41 +01:00
parent 3f2213791a
commit 340ff8586d
1008 changed files with 61301 additions and 58309 deletions

View file

@ -60,7 +60,11 @@ modlist:
import traceback
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
from ansible_collections.community.general.plugins.module_utils.ldap import LdapGeneric, gen_specs, ldap_required_together
from ansible_collections.community.general.plugins.module_utils.ldap import (
LdapGeneric,
gen_specs,
ldap_required_together,
)
LDAP_IMP_ERR = None
try:
@ -77,7 +81,7 @@ class LdapPasswd(LdapGeneric):
LdapGeneric.__init__(self, module)
# Shortcuts
self.passwd = self.module.params['passwd']
self.passwd = self.module.params["passwd"]
def passwd_check(self):
try:
@ -125,8 +129,7 @@ def main():
)
if not HAS_LDAP:
module.fail_json(msg=missing_required_lib('python-ldap'),
exception=LDAP_IMP_ERR)
module.fail_json(msg=missing_required_lib("python-ldap"), exception=LDAP_IMP_ERR)
ldap = LdapPasswd(module)
@ -136,5 +139,5 @@ def main():
module.exit_json(changed=ldap.passwd_set())
if __name__ == '__main__':
if __name__ == "__main__":
main()