mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-16 14:01:20 -05:00
7 lines
80 B
Python
7 lines
80 B
Python
class NotSet:
|
|
def __bool__(self):
|
|
return False
|
|
|
|
|
|
NOT_SET = NotSet()
|