11 lines
235 B
Python
11 lines
235 B
Python
|
unset = object()
|
||
|
|
||
|
|
||
|
def of(d):
|
||
|
"""
|
||
|
Remove unset values from a dict.
|
||
|
|
||
|
:param dict d: A dict to strip.
|
||
|
:return dict: A dict with unset values removed.
|
||
|
"""
|
||
|
return {k: v for k, v in d.items() if v != unset}
|