Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Azfaar Qureshi committed Nov 19, 2020
1 parent 8f43c7c commit 23de712
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,13 @@ def __init__(self, tracer, exporter, interval):
if exporter and interval:
self._accumulator = metrics.get_meter(__name__)
self.controller = PushController(
accumulator=self._accumulator, exporter=exporter, interval=interval
accumulator=self._accumulator,
exporter=exporter,
interval=interval,
)
self._metrics_recorder = TimedMetricRecorder(
self._accumulator, "client")
self._accumulator, "client",
)

def _start_span(self, method):
return self._tracer.start_as_current_span(
Expand Down

0 comments on commit 23de712

Please sign in to comment.