fix: annotate result dict as dict[str, Any] for last_activity None

This commit is contained in:
LIghtJUNction
2026-03-24 18:20:39 +08:00
parent 4436420e08
commit f3642df564

View File

@@ -112,7 +112,7 @@ class RuntimeStatusStar:
def _get_stats(self) -> dict[str, Any]:
"""Get message counts and metrics."""
result = {
result: dict[str, Any] = {
"uptime_seconds": time.time() - self._start_time,
}
if self._orchestrator: