Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgear committed Jan 7, 2024
1 parent c5832ff commit c4354d8
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,8 @@ def send_info(self, metrics: dict, debug: bool = False) -> None:
for i in self.info_rewrites:
if i in metrics:
metrics[self.info_rewrites[i]] = metrics[i]
del(metrics[i])
self.send_stats(
"ntpmon",
metrics,
self.infotypes,
[],
[],
debug=debug,
)
del metrics[i]
self.send_stats("ntpmon", metrics, self.infotypes, [], [], debug=debug)
self.send_stats(
"ntpmon",
metrics,
Expand Down

0 comments on commit c4354d8

Please sign in to comment.