Source code for ovl.helpers.remove_none_values
[docs]def remove_none_values(dictionary: dict):
return {key: value for key, value in dictionary.items() if value is not None}
[docs]def remove_none_values(dictionary: dict):
return {key: value for key, value in dictionary.items() if value is not None}