helper_random pylint fixes
This commit is contained in:
parent
05cda087d6
commit
28cfe78e67
|
@ -1,6 +1,4 @@
|
||||||
"""
|
"""Convenience functions for random operations. Not suitable for security / cryptography operations."""
|
||||||
Convenience functions for random operations. Not suitable for security / cryptography operations
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
|
@ -58,7 +56,6 @@ def randomrandrange(x, y=None):
|
||||||
"""
|
"""
|
||||||
if isinstance(y, NoneType):
|
if isinstance(y, NoneType):
|
||||||
return random.randrange(x) # nosec
|
return random.randrange(x) # nosec
|
||||||
else:
|
|
||||||
return random.randrange(x, y) # nosec
|
return random.randrange(x, y) # nosec
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user