removed variables from different settings lib

This commit is contained in:
iLLiCiTiT 2021-02-09 11:13:19 +01:00
parent 08efc48a87
commit 7b4368f423

View file

@ -17,16 +17,9 @@ class DefaultsNotDefined(Exception):
WRAPPER_TYPES = ["form", "collapsible-wrap"]
DEFAULTS_DIR = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"defaults"
)
NOT_SET = type("NOT_SET", (), {"__bool__": lambda obj: False})()
METADATA_KEY = type("METADATA_KEY", (), {})()
OVERRIDE_VERSION = 1
CHILD_OFFSET = 15
key_pattern = re.compile(r"(\{.*?[^{0]*\})")