[hermes] ariadne: python:S2208 #9

Open
opened 2026-09-21 06:19:57 +00:00 by hermes-automation · 0 comments

SonarQube reports python:S2208 in ariadne/services/cluster_state_profiles.py. The build is green; this is a standing finding, not a failure.

What is wrong

Line 5 uses a wildcard import (from .cluster_state_contract import *), which hides which names this module actually depends on. The module only uses _NODE_WORKLOAD_TOP and _PROFILE_LIMIT from the contract, plus ClusterStateSummary and SignalContext, which the dynamic all at the bottom deliberately re-exports.

Ariadne opened no pull request for it: no automated patch was possible for this finding.

Facts

  • gitea — Import only needed names or import the module and then use its members. (CRITICAL, 5min estimated) (ariadne/services/cluster_state_profiles.py:5)

Suggested fix (not applied)

Hermes could not open a pull request for this, so the change below was not written, validated, or pushed anywhere. It is a starting point for whoever picks this up, not a reviewed patch.

ariadne/services/cluster_state_profiles.py — Replace the star import with an explicit import of the four names the module actually references: _NODE_WORKLOAD_TOP and _PROFILE_LIMIT are used in _node_profiles and the profile-limiting slices, and ClusterStateSummary and SignalContext must stay in this module's globals so the all comprehension at the bottom keeps re-exporting them. Importing them by name satisfies python:S2208 while leaving runtime behaviour unchanged.

from .cluster_state_contract import (
    ClusterStateSummary,
    SignalContext,
    _NODE_WORKLOAD_TOP,
    _PROFILE_LIMIT,
)

Filed automatically by Ariadne from a Hermes Agent diagnosis (run run_f49dc3e30db04671bf9d64217177b742). Hermes has no write access to this repository; no files or infrastructure were changed.

SonarQube reports **python:S2208** in `ariadne/services/cluster_state_profiles.py`. The build is green; this is a standing finding, not a failure. ## What is wrong Line 5 uses a wildcard import (from .cluster_state_contract import *), which hides which names this module actually depends on. The module only uses _NODE_WORKLOAD_TOP and _PROFILE_LIMIT from the contract, plus ClusterStateSummary and SignalContext, which the dynamic __all__ at the bottom deliberately re-exports. Ariadne opened no pull request for it: no automated patch was possible for this finding. ## Facts - **gitea** — Import only needed names or import the module and then use its members. (CRITICAL, 5min estimated) (`ariadne/services/cluster_state_profiles.py:5`) ## Suggested fix (not applied) Hermes could not open a pull request for this, so the change below was not written, validated, or pushed anywhere. It is a starting point for whoever picks this up, not a reviewed patch. **`ariadne/services/cluster_state_profiles.py`** — Replace the star import with an explicit import of the four names the module actually references: _NODE_WORKLOAD_TOP and _PROFILE_LIMIT are used in _node_profiles and the profile-limiting slices, and ClusterStateSummary and SignalContext must stay in this module's globals so the __all__ comprehension at the bottom keeps re-exporting them. Importing them by name satisfies python:S2208 while leaving runtime behaviour unchanged. ``` from .cluster_state_contract import ( ClusterStateSummary, SignalContext, _NODE_WORKLOAD_TOP, _PROFILE_LIMIT, ) ``` ## Links - SonarQube finding: https://quality.bstein.dev/project/issues?resolved=false&id=ariadne&open=AZ2y0FYFKy9i4pkIpNlV - Full evidence bundle and audit trail live in Ariadne at `/api/admin/audit/events`, event types `hermes_autotriage_incident` and `hermes_autotriage_diagnosis`. Filed automatically by Ariadne from a Hermes Agent diagnosis (run [run_f49dc3e30db04671bf9d64217177b742](https://triage.bstein.dev/chat?resume=run_f49dc3e30db04671bf9d64217177b742)). Hermes has no write access to this repository; no files or infrastructure were changed. <!-- hermes-triage job=ariadne classification=python:S2208 incident=sonar/ariadne/python:S2208/AZ2y0FYFKy9i4pkIpNlV -->
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: titan/ariadne#9
No description provided.