Skip to content

Commit

Permalink
fix pylint.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Jan 9, 2024
2 parents cf5db65 + fa030c6 commit 7a87130
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ disable=missing-docstring,
missing-module-docstring, # temp-pylint-upgrade
import-error, # needed as a workaround as reported here: https://github.com/open-telemetry/opentelemetry-python-contrib/issues/290
cyclic-import,
E0611,
E0611, # disabled since pylint use wrong path because of project folder structure divergence

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
from opentelemetry.trace import set_tracer_provider


# pylint: disable=W0246
class AwsTracerProvider(TracerProvider):
def __init__(self):
super(AwsTracerProvider, self).__init__() # pylint: disable=W0246
super(AwsTracerProvider, self).__init__()
# TODO:
# 1. Add SpanMetricsProcessor to generate AppSignal metrics from spans and exports them
# 2. Add AttributePropagatingSpanProcessor to propagate span attributes from parent to child
Expand Down

0 comments on commit 7a87130

Please sign in to comment.