Skip to content

Commit 16d6648

Browse files
fix: qa issues
1 parent 77dab76 commit 16d6648

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/askui/multi_device_agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ def __init__(
6262
)
6363

6464
# Initialize the computer agent
65-
self._computer_agent = ComputerAgent(
65+
self._computer_agent: ComputerAgent = ComputerAgent(
6666
display=desktop_display,
6767
reporters=[reporter],
6868
settings=settings,
6969
)
7070

7171
# Initialize the Android agent
72-
self._android_agent = AndroidAgent(
72+
self._android_agent: AndroidAgent = AndroidAgent(
7373
device=android_device_sn,
7474
reporters=[reporter],
7575
settings=settings,

src/askui/telemetry/otel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ def setup_opentelemetry_tracing(settings: OtelSettings) -> None:
5858
5959
"""
6060
try:
61-
from opentelemetry.exporter.otlp.proto.http.trace_exporter import ( # type: ignore[import-not-found]
61+
from opentelemetry.exporter.otlp.proto.http.trace_exporter import (
6262
OTLPSpanExporter,
6363
)
64-
from opentelemetry.instrumentation.httpx import ( # type: ignore[import-not-found]
64+
from opentelemetry.instrumentation.httpx import (
6565
HTTPXClientInstrumentor,
6666
)
67-
from opentelemetry.instrumentation.sqlalchemy import ( # type: ignore[import-not-found]
67+
from opentelemetry.instrumentation.sqlalchemy import (
6868
SQLAlchemyInstrumentor,
6969
)
7070
except ImportError:

0 commit comments

Comments
 (0)