tiramisu-api-python/tiramisu_api/setting.py

12 lines
213 B
Python
Raw Normal View History

try:
from tiramisu.setting import undefined
2019-08-22 15:51:30 +02:00
except ImportError:
class Undefined(object):
def __str__(self):
return 'Undefined'
__repr__ = __str__
undefined = Undefined()