From eecb02f0ca7e756688f53a6b818d615eb3186d37 Mon Sep 17 00:00:00 2001 From: rjduffner Date: Tue, 28 Jan 2025 14:15:35 -0800 Subject: [PATCH] Add type hints --- .../src/opentelemetry/instrumentation/dependencies.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opentelemetry-instrumentation/src/opentelemetry/instrumentation/dependencies.py b/opentelemetry-instrumentation/src/opentelemetry/instrumentation/dependencies.py index e9bb35094f..080f3553bb 100644 --- a/opentelemetry-instrumentation/src/opentelemetry/instrumentation/dependencies.py +++ b/opentelemetry-instrumentation/src/opentelemetry/instrumentation/dependencies.py @@ -40,6 +40,8 @@ def __str__(self): class DependencyConflictError(Exception): + conflict: DependencyConflict + def __init__(self, conflict: DependencyConflict): self.conflict = conflict