mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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()
|
||||
|
||||
@staticmethod
|
||||
def _flatten(self, terms):
|
||||
def _flatten(terms):
|
||||
ret = []
|
||||
for term in terms:
|
||||
if isinstance(term, (list, tuple)):
|
||||
|
|
Loading…
Reference in a new issue