Skip to content

Commit b4c53ca

Browse files
declan-scaleclaude
andcommitted
fix(harness): mark _RecordingTracer.handle with @OverRide (reportImplicitOverride)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent bcd902d commit b4c53ca

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/lib/core/harness/conformance/runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
from __future__ import annotations
5050

5151
import types as _types
52-
from typing import Any, NamedTuple
52+
from typing import Any, NamedTuple, override
5353
from dataclasses import dataclass
5454

5555
from agentex.types.task_message import TaskMessage
@@ -267,6 +267,7 @@ def __init__(self, tracing: Any) -> None:
267267
)
268268
self.received_signals: list[SpanSignal] = []
269269

270+
@override
270271
async def handle(self, signal: SpanSignal) -> None:
271272
self.received_signals.append(signal)
272273
await super().handle(signal)

0 commit comments

Comments
 (0)