Files
mealie/mealie/repos/_utils.py
2024-08-22 10:14:32 -05:00

7 lines
80 B
Python

class NotSet:
def __bool__(self):
return False
NOT_SET = NotSet()