Skip to content

Commit 5c6d89b

Browse files
Remove unicode chars and unwanted ignore
1 parent c38154e commit 5c6d89b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
277277
## Version 1.21.0/0.42b0 (2023-11-01)
278278

279279
- Fix `SumAggregation`
280-
([#3390](https://github.com/open-telemetry/opentelemetry-python/pull/3390))
280+
([#3390](https://github.com/open-telemetry/opentelemetry-python/pull/3390))
281281
- Fix handling of empty metric collection cycles
282282
([#3335](https://github.com/open-telemetry/opentelemetry-python/pull/3335))
283283
- Fix error when no LoggerProvider configured for LoggingHandler

opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/exemplar/exemplar_reservoir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def collect(self, point_attributes: Attributes) -> List[Exemplar]:
184184
exemplars = [
185185
e
186186
for e in (
187-
bucket.collect(point_attributes) # type: ignore
187+
bucket.collect(point_attributes)
188188
for _, bucket in sorted(self._reservoir_storage.items())
189189
)
190190
if e is not None

0 commit comments

Comments
 (0)