clearml-agent/trains_agent/helper/dicts.py

6 lines
189 B
Python
Raw Normal View History

2019-10-25 19:28:44 +00:00
from typing import Callable, Dict, Any
def filter_keys(filter_, dct): # type: (Callable[[Any], bool], Dict) -> Dict
return {key: value for key, value in dct.items() if filter_(key)}