From de39b041cbc0bcec11e4fbb8986739ae58ce90ad Mon Sep 17 00:00:00 2001 From: amcmanu3 Date: Mon, 13 Nov 2023 16:03:53 -0500 Subject: [PATCH] Fix comment --- app/classes/shared/helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/classes/shared/helpers.py b/app/classes/shared/helpers.py index 67dd97da..77cf731e 100644 --- a/app/classes/shared/helpers.py +++ b/app/classes/shared/helpers.py @@ -367,7 +367,7 @@ class Helpers: # maximum length of password needed max_len = 25 - # declare arrays of the character that we need in out password + # declare string of the character that we need in out password # Represented as chars to enable easy string concatenation digits = string.digits locase = string.ascii_lowercase @@ -376,7 +376,7 @@ class Helpers: symbols = string.punctuation - # combines all the character arrays above to form one array + # combines all the character strings above to form one array combo = digits + upcase + locase + symbols # randomly select at least one character from each character set above