Skip to content

Commit

Permalink
fix f string
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Feb 7, 2025
1 parent f3f9c1e commit 4485f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceprod/prom_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def on_finish(self):
end_time = time.monotonic()
self.PromHTTPHistogram.labels(
verb=str(self.request.method),
handler=f'{self.__class__.__module__.split('.')[-1]}.{self.__class__.__name__}',
handler=f'{self.__class__.__module__.split(".")[-1]}.{self.__class__.__name__}',
status=str(self.get_status()),
).observe(end_time - self._prom_start_time)

Expand Down

0 comments on commit 4485f31

Please sign in to comment.