This commit is contained in:
2026-03-31 12:44:54 +05:30
parent e44d8321bc
commit cbe3f0b32c
5 changed files with 95 additions and 21 deletions

View File

@@ -11,8 +11,8 @@ class ItemCRUDType(Enum):
GSTRelease = 7
class RegEx:
patternAlphabetOnly = "^[A-Za-z ]+$"
allPattern = "^(?!\s*$).+"
patternAlphabetOnly = r"^[A-Za-z ]+$"
allPattern = r"^(?!\s*$).+"
class ResponseHandler: