File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/resources Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ - opentelemetry-sdk: Fix invalid ` type: ignore ` that causes mypy to ignore the whole file
11
+ ([ #4618 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4618 ) )
12
+
10
13
## Version 1.34.0/0.55b0 (2025-06-04)
11
14
12
15
- typecheck: add sdk/resources and drop mypy
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- # type: ignore[reportDeprecated] # ResourceAttributes is deprecated
16
-
17
15
"""
18
16
This package implements `OpenTelemetry Resources
19
17
<https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/resource/sdk.md#resource-sdk>`_:
58
56
above example.
59
57
"""
60
58
59
+ # ResourceAttributes is deprecated
60
+ # pyright: reportDeprecated=false
61
+
61
62
import abc
62
63
import concurrent .futures
63
64
import logging
You can’t perform that action at this time.
0 commit comments