lowercase is better for typing with mobile

This commit is contained in:
2022-11-04 11:51:06 +02:00
parent 34af573341
commit 21fe60dd4f

View File

@@ -140,7 +140,7 @@ def random_char():
str: A single uppercase letter or number
"""
return random.choice(string.ascii_uppercase + string.digits)
return random.choice(string.ascii_lowercase + string.digits)
def random_name():