Fix striping empty escape sequences from strings

- Fix log message on jsonl write
This commit is contained in:
Debanjum Singh Solanky
2022-09-10 23:55:09 +03:00
parent a7cf6c8458
commit 2e1bbe0cac
4 changed files with 5 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ from pathlib import Path
app_root_directory = Path(__file__).parent.parent.parent
web_directory = app_root_directory / 'src/interface/web/'
empty_escape_sequences = r'\n|\r\t '
empty_escape_sequences = '\n|\r|\t| '
# default app config to use
default_config = {