mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Cleanup bug from moving base lookup methods to staticmethods
This commit is contained in:
parent
ac98fe9e89
commit
cbbb270761
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class LookupBase(with_metaclass(ABCMeta, object)):
|
||||||
return self._loader.get_basedir()
|
return self._loader.get_basedir()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _flatten(self, terms):
|
def _flatten(terms):
|
||||||
ret = []
|
ret = []
|
||||||
for term in terms:
|
for term in terms:
|
||||||
if isinstance(term, (list, tuple)):
|
if isinstance(term, (list, tuple)):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue