mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-15 23:05:23 -05:00
7 lines
80 B
Python
7 lines
80 B
Python
class NotSet:
|
|
def __bool__(self):
|
|
return False
|
|
|
|
|
|
NOT_SET = NotSet()
|