Skip to content

Commit

Permalink
Updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fedelemantuano committed Mar 19, 2024
1 parent 61812bf commit b58f9bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mailparser/utils.py
Expand Up @@ -587,4 +587,4 @@ def random_string(string_length=10):
str -- Random string
"""
letters = string.ascii_lowercase
return ''.join(random.choice(letters) for i in range(string_length))
return ''.join(random.choice(letters) for _ in range(string_length))

0 comments on commit b58f9bf

Please sign in to comment.