mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-18 14:57:00 +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)}
|