Common: Change CustomPBAConfigriguration's filename validation to allow empty strings

This commit is contained in:
Shreya Malviya 2022-07-26 16:14:52 +05:30
parent 626720ff9f
commit bcf7a2e8ff
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ from .agent_sub_configurations import (
)
from .utils import freeze_lists
valid_custom_pba_filename_regex = re.compile(r"^([a-zA-Z0-9\ \._-]+)$")
valid_custom_pba_filename_regex = re.compile(r"^([a-zA-Z0-9\ \._-]*)$")
class CustomPBAConfigurationSchema(Schema):