File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments