
Found this #python snippet in my code
ret = [mydict for mydict in mylist if mydict.get('somekey') == 'somevalue']
I did not now about the == at the end of the list comprehension .
I am pretty sure I red a blogpost about list comprehension that day :)