pull/125/merge
Mohammed Jasil 2025-04-02 06:33:20 +00:00 committed by GitHub
commit 0c2596360d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -32,4 +32,4 @@ def exponential_delay(n):
(EXPONENTIAL_COEFFICIENT ** n)
period_size = min(exponential_limit, MAXIMUM_TIMEOUT)
return randint(0, period_size - 1)
return randint(0, int(period_size) - 1)