Skip to content

Commit

Permalink
Update handler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
awmackowiak authored Aug 31, 2023
1 parent 35e2b05 commit 6551dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vaas/vaas/metrics/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def time(self, metric_name: str, value: float) -> None:
for protocol in self.protocols:
protocol.sum(metric_name, value)

def gauge(self, metric_name: str, value: int):
def gauge(self, metric_name: str, value: int) -> None:
for protocol in self.protocols:
protocol.gauge(metric_name, value)

Expand Down

0 comments on commit 6551dab

Please sign in to comment.