Skip to content

Commit

Permalink
Fix exceptions module path
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Apr 13, 2022
1 parent 88f3a06 commit e27950a
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 @@ -50,7 +50,7 @@
from opentelemetry.sdk.resources import Resource
from opentelemetry.sdk.util.instrumentation import InstrumentationInfo
from opentelemetry.util._once import Once
from opentelemetry.util.exceptions import _Failure
from opentelemetry.util._exceptions import _Failure

_logger = getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-sdk/tests/metrics/test_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from opentelemetry.sdk._metrics.point import AggregationTemporality
from opentelemetry.sdk.resources import Resource
from opentelemetry.test.concurrency_test import ConcurrencyTestBase, MockFunc
from opentelemetry.util.exceptions import _Failure
from opentelemetry.util._exceptions import _Failure


class DummyMetricReader(MetricReader):
Expand Down

0 comments on commit e27950a

Please sign in to comment.