You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
276 B
Python

class MetaConst(type):
def __setattr__(cls, name, value):
if name in cls.__dict__:
raise TypeError(f"Cannot rebind constant {name}")
super().__setattr__(name, value)
class Constant(metaclass=MetaConst):
LOGICAL_DELETE_FIELD = "is_deleted"