Skip to content

Commit e08842c

Browse files
durandomclaude
andcommitted
style: ruff format release.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2e71353 commit e08842c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

skills/rhdh-release/scripts/release.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,7 @@ def _find_milestones(rows: list[list[str]], version: str) -> dict[str, str | Non
222222
for i, row in enumerate(rows):
223223
cells = [str(c) for c in row]
224224
row_text = " " + " ".join(cells).lower() + " "
225-
version_match = ver in row_text or (
226-
version.lower().replace("rhdh", "").strip() in row_text
227-
)
225+
version_match = ver in row_text or (version.lower().replace("rhdh", "").strip() in row_text)
228226
ga_match = any(kw in row_text for kw in ga_keywords)
229227
if version_match and ga_match:
230228
ga_index = i

0 commit comments

Comments
 (0)