mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-05-08 11:03:30 -04:00
7 lines
80 B
Python
7 lines
80 B
Python
class NotSet:
|
|
def __bool__(self):
|
|
return False
|
|
|
|
|
|
NOT_SET = NotSet()
|