small bug
This commit is contained in:
parent
c76f9215c4
commit
af938fcf56
@ -51,7 +51,7 @@ class TokenBucket(object):
|
||||
|
||||
@property
|
||||
def tokens(self):
|
||||
now = time()
|
||||
now = time.time()
|
||||
if self._tokens < self.capacity:
|
||||
delta = self.fill_rate * (now - self.timestamp)
|
||||
self._tokens = min(self.capacity, self._tokens + delta)
|
||||
|
Loading…
x
Reference in New Issue
Block a user