Skip to content

Commit 1e1325f

Browse files
committed
refactor(operator-trend): tighten decision_memory_map type to dict[str, dict]
Match the original god-function's annotation (review nit): _decision_memory_map returns dict[str, dict] and _resolution_targets takes it as dict[str, dict]; the extracted helper should not widen it to dict[str, Any].
1 parent b2fb0a2 commit 1e1325f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/operator_trend_resolution_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def build_resolution_trend_payload(
2222
*,
2323
apply_chain: dict[str, Any],
2424
summary_context: dict[str, Any],
25-
decision_memory_map: dict[str, Any],
25+
decision_memory_map: dict[str, dict],
2626
class_transition_health_summary: Callable[..., Any],
2727
class_transition_resolution_summary: Callable[..., Any],
2828
closure_forecast_hysteresis_summary: Callable[..., Any],

0 commit comments

Comments
 (0)