From c8f42929dd312459b5f4d4dfb0b4adcc741e1aee Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 7 Aug 2026 02:17:17 +0000 Subject: [PATCH] fix(hermes): Replace the wildcard import with the exact contract symbols used by this module, resolving python:S2208 without changing behavior. (incident sonar/ariadne/AZ2y0FYFKy9i4pkIpNlV) --- ariadne/services/cluster_state_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ariadne/services/cluster_state_profiles.py b/ariadne/services/cluster_state_profiles.py index e28a6a8..74f9dd6 100644 --- a/ariadne/services/cluster_state_profiles.py +++ b/ariadne/services/cluster_state_profiles.py @@ -2,7 +2,7 @@ from __future__ import annotations from typing import Any -from .cluster_state_contract import * +from .cluster_state_contract import ClusterStateSummary, SignalContext, _NODE_WORKLOAD_TOP, _PROFILE_LIMIT ProfileRows = list[dict[str, Any]] NodeWorkloadMap = dict[str, dict[str, int]] -- 2.47.2