Skip to content

Commit 470ff1b

Browse files
committed
Fix lint issue
1 parent 614c5c6 commit 470ff1b

File tree

1 file changed

+1
-1
lines changed
  • opentelemetry-sdk/src/opentelemetry/sdk/_shared_internal

1 file changed

+1
-1
lines changed

opentelemetry-sdk/src/opentelemetry/sdk/_shared_internal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def filter(self, record):
5353
time.time() // 60,
5454
)
5555
if current_log != getattr(self, "last_log", None):
56-
self.last_log = current_log
56+
self.last_log = current_log # pylint: disable=attribute-defined-outside-init
5757
return True
5858
# False means python's `logging` module will no longer process this log.
5959
return False

0 commit comments

Comments
 (0)