Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nstawski committed Nov 8, 2023
1 parent 622ba89 commit cbe82f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class InMemoryMetricExporter(MetricExporter):
The `export` method adds the metrics to the in-memory store and increments
the counter. Each set of metrics can be accessed by its unique index.
"""

def __init__(self):
super().__init__()
self.metrics = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
MetricExportResult,
)


class MockMetric:
# A placeholder class for mock metrics
pass


class TestInMemoryMetricExporter(TestCase):
def setUp(self):
self.exporter = InMemoryMetricExporter()
Expand Down

0 comments on commit cbe82f7

Please sign in to comment.