Commit 65630d2c by James Cammarata

Fixing one more bug related to staticmethods in LookupBase

parent cbbb2707
...@@ -58,7 +58,7 @@ class LookupBase(with_metaclass(ABCMeta, object)): ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment