MPC/utils/Utils.py

8 lines
152 B
Python
Raw Permalink Normal View History

2018-12-04 02:05:06 +07:00
class Utils:
def lookup(self, name, lst, func):
for x in lst:
if name == func(x):
return x
return None