Skip to content

Commit 24ea586

Browse files
committed
chore: fix type hint
1 parent 5992b83 commit 24ea586

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/release-demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __get_demo_release_notes() -> str:
8989
"""Returns the release notes for the demo."""
9090
temp_folder: Path = Path(tempfile.mkdtemp()).resolve()
9191
notes_path: Path = temp_folder / "body.md"
92-
command: list[str] = ["uv", "run", "./scripts/get-release-notes.py", notes_path]
92+
command: list[str | Path] = ["uv", "run", "./scripts/get-release-notes.py", notes_path]
9393
subprocess.run(command, check=True)
9494

9595
notes_contents: str = notes_path.read_text()

0 commit comments

Comments
 (0)