Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
Signed-off-by: emdneto <[email protected]>
  • Loading branch information
emdneto committed Oct 8, 2024
1 parent e173363 commit 1840c38
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
Duration,
)
from google.protobuf.json_format import MessageToDict
from google.rpc.error_details_pb2 import RetryInfo
from google.rpc.error_details_pb2 import ( # pylint: disable=no-name-in-module
RetryInfo,
)
from grpc import ChannelCredentials, Compression, StatusCode, server

from opentelemetry._logs import SeverityNumber
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
from google.protobuf.duration_pb2 import ( # pylint: disable=no-name-in-module
Duration,
)
from google.rpc.error_details_pb2 import RetryInfo
from google.rpc.error_details_pb2 import ( # pylint: disable=no-name-in-module
RetryInfo,
)
from grpc import Compression

from opentelemetry.exporter.otlp.proto.grpc.exporter import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
from google.protobuf.duration_pb2 import ( # pylint: disable=no-name-in-module
Duration,
)
from google.rpc.error_details_pb2 import RetryInfo
from google.rpc.error_details_pb2 import ( # pylint: disable=no-name-in-module
RetryInfo,
)
from grpc import ChannelCredentials, Compression, StatusCode, server

from opentelemetry.exporter.otlp.proto.grpc.metric_exporter import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
from google.protobuf.duration_pb2 import ( # pylint: disable=no-name-in-module
Duration,
)
from google.rpc.error_details_pb2 import RetryInfo
from google.rpc.error_details_pb2 import ( # pylint: disable=no-name-in-module
RetryInfo,
)
from grpc import ChannelCredentials, Compression, StatusCode, server

from opentelemetry.attributes import BoundedAttributes
Expand Down

0 comments on commit 1840c38

Please sign in to comment.