fix prometheus

This commit is contained in:
genofire 2020-06-09 20:22:20 +02:00
parent 52dc918125
commit 6029cdc831
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class Prometheus():
def handler(self, metrics_handler):
now = time()
if now >= i(self._last_update + self.ttl):
if now >= (self._last_update + self.ttl):
self._metrics.update()
self._last_update = now