mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Lintfix: E8701 (PEP8 E701), C0321
This commit is contained in:
parent
58aa4a0f23
commit
d047270a0d
@ -56,7 +56,8 @@ class AnsibleModuleResolver(object):
|
||||
path = root
|
||||
for p_el in os.listdir(path):
|
||||
p_el_path = os.path.join(path, p_el)
|
||||
if os.path.islink(p_el_path): continue
|
||||
if os.path.islink(p_el_path):
|
||||
continue
|
||||
if os.path.isdir(p_el_path):
|
||||
paths.update(self._get_modules_map(p_el_path))
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user