File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/resources Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## Unreleased
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
+
8
13
## Version 1.34.0/0.55b0 (2025-06-04)
9
14
10
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