We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59fc626 commit a53e0faCopy full SHA for a53e0fa
1 file changed
.github/scripts/extract_changelog.py
@@ -19,6 +19,7 @@ def extract_section(version: str, changelog_path: Path) -> str:
19
if not match:
20
print(f"No changelog entry found for version {version}", file=sys.stderr)
21
sys.exit(1)
22
+ assert match is not None
23
return match.group(0).strip()
24
25
0 commit comments