(Economy): Completed base shop UI.

This commit is contained in:
2021-09-15 09:24:37 +03:00
parent b25380d072
commit bac72194a3
5 changed files with 251 additions and 18 deletions

View File

@@ -510,3 +510,9 @@ class FieldEnum(str, Enum):
def __conform__(self, proto):
return QuotedString(self.value)
multiselect_regex = re.compile(
r"^([0-9, -]+)$",
re.DOTALL | re.IGNORECASE | re.VERBOSE
)