Added backslash to the forbidden chars

This commit is contained in:
2022-12-30 13:54:03 +03:00
parent 77be64ed4b
commit 74844da4ae
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import string
from .decrypted_account import DecryptedAccount
FORBIDDEN_CHARS = frozenset("`\n")
FORBIDDEN_CHARS = frozenset("`\n\\")
PUNCTUATION = frozenset(string.punctuation).difference(FORBIDDEN_CHARS)