mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixing one more bug related to staticmethods in LookupBase
This commit is contained in:
parent
cbbb270761
commit
65630d2ce1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class LookupBase(with_metaclass(ABCMeta, object)):
|
|||
results = []
|
||||
for x in a:
|
||||
for y in b:
|
||||
results.append(self._flatten([x,y]))
|
||||
results.append(LookupBase._flatten([x,y]))
|
||||
return results
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in a new issue