mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 22:51:23 -07: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 = []
|
results = []
|
||||||
for x in a:
|
for x in a:
|
||||||
for y in b:
|
for y in b:
|
||||||
results.append(self._flatten([x,y]))
|
results.append(LookupBase._flatten([x,y]))
|
||||||
return results
|
return results
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue