mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-25 08:54:52 +01:00
3 lines
114 B
Python
3 lines
114 B
Python
def remove_falsey_entries(data: dict, key: str) -> dict:
|
|
return {k: v for k, v in data.items() if v.get(key)}
|