Skip to content

Commit deb3c71

Browse files
committed
fix ruff and added changelog
1 parent bae83a8 commit deb3c71

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

instrumentation-genai/opentelemetry-instrumentation-langchain/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
- Fixed typecheck.
11+
([#3773](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3773))
12+
-
1013
- Added span support for genAI langchain llm invocation.
1114
([#3665](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3665))

instrumentation-genai/opentelemetry-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/span_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
@dataclass
3232
class _SpanState:
3333
span: Span
34-
children: List[UUID] = field(default_factory=list) # type: ignore [reportUnknownVariableType]
34+
children: List[UUID] = field(default_factory=list) # type: ignore [reportUnknownVariableType]
3535

3636

3737
class _SpanManager:

0 commit comments

Comments
 (0)