simplified

This commit is contained in:
2024-08-19 13:02:36 +02:00
parent 52e7260fb1
commit d3ac74835e

View File

@ -25,8 +25,7 @@ def randskip(skip_rate):
# Return True percentage % of times
# Return False (100 - percentage) % of times
# """
# percentage /= 100
# return random() < percentage
# return 100 * random() < percentage
## thus: