mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9 lines
210 B
Python
9 lines
210 B
Python
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
|
|
def search_obj_in_list(item, lst, key):
|
|
for o in lst:
|
|
if o[key] == item:
|
|
return o
|
|
return None
|