Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Jul 15, 2024
1 parent deffe66 commit 488cf81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
# pylint: disable=protected-access,too-many-lines,invalid-name
# pylint: disable=consider-using-enumerate,no-self-use,too-many-public-methods

from random import Random, randrange
from inspect import currentframe
from itertools import permutations
from logging import WARNING
from math import ldexp
from random import Random, randrange
from sys import float_info, maxsize
from types import MethodType
from unittest.mock import Mock, patch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def test_synchronous_cumulative_temporality(self):

results = []

for i in range(10):
for _ in range(10):
results.append(reader.get_metrics_data())

provider.shutdown()
Expand Down

0 comments on commit 488cf81

Please sign in to comment.