Renamed classes.py into decrypted_accounts.py. Removed unnessesary elements from that file

This commit is contained in:
2022-12-25 21:01:18 +03:00
parent 3f744723a9
commit 50eb3057d5
7 changed files with 14 additions and 27 deletions

View File

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