Black codebase

This commit is contained in:
Andrew 2023-12-07 11:05:26 -05:00
parent 73e2de6c9c
commit 7037d857d7

View File

@ -370,7 +370,7 @@ class Helpers:
digits = string.digits
locase = string.ascii_lowercase
upcase = string.ascii_uppercase
symbols = "!@#$%^&*" # Reducing to avoid issues with ([]{}<>,'`) etc
symbols = "!@#$%^&*" # Reducing to avoid issues with ([]{}<>,'`) etc
# Combine all the character strings above to form one string
combo = digits + upcase + locase + symbols