[commons] refactoring: removing symbols that are previously removed from inputs

This commit is contained in:
Vinicius Moreira
2022-05-03 11:26:36 -03:00
parent 4e509bb084
commit 7c0eb93043

View File

@@ -5,7 +5,7 @@ from datetime import datetime
from logging import Logger
from typing import Optional, Union
re_command_forbidden_symbols = re.compile(r'[\'\"%$#*<>|&]')
re_command_forbidden_symbols = re.compile(r'[\'\"%$#*<>]')
re_several_spaces = re.compile(r'\s+')
re_command_parameter = re.compile(r'(^|\s)-+\w+')