code format

This commit is contained in:
Jakob Ketterl
2019-09-13 23:03:05 +02:00
parent 8d47259f78
commit 98f1545fca
5 changed files with 35 additions and 53 deletions

View File

@ -11,9 +11,7 @@ class CounterMetric(Metric):
self.counter += increment
def getValue(self):
return {
"count": self.counter,
}
return {"count": self.counter}
class DirectMetric(Metric):