Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit dfa29d0

Browse files
committed
Silence S311 Error
1 parent 710f700 commit dfa29d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

camelot/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def random_string(length):
7272
"""
7373
ret = ""
7474
while length:
75-
ret += random.choice(
75+
ret += random.choice( # noqa S311
7676
string.digits + string.ascii_lowercase + string.ascii_uppercase
7777
)
7878
length -= 1

0 commit comments

Comments
 (0)