Skip to content

Commit 0e74555

Browse files
cpcloudclaude
andcommitted
style: fix ruff lint and format issues
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ce50b2c commit 0e74555

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

toolshed/check_release_notes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ def notes_path(package: str, version: str) -> str:
4545
return os.path.join(package, "docs", "source", "release", f"{version}-notes.rst")
4646

4747

48-
def check_release_notes(
49-
git_tag: str, component: str, repo_root: str = "."
50-
) -> list[tuple[str, str]]:
48+
def check_release_notes(git_tag: str, component: str, repo_root: str = ".") -> list[tuple[str, str]]:
5149
"""Return a list of (path, reason) for missing or empty release notes.
5250
5351
Returns an empty list when all notes are present and non-empty.

toolshed/tests/test_check_release_notes.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
import os
77
import sys
88

9-
import pytest
10-
119
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
1210
from check_release_notes import (
1311
check_release_notes,

0 commit comments

Comments
 (0)