We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5992b83 commit 24ea586Copy full SHA for 24ea586
1 file changed
scripts/release-demo.py
@@ -89,7 +89,7 @@ def __get_demo_release_notes() -> str:
89
"""Returns the release notes for the demo."""
90
temp_folder: Path = Path(tempfile.mkdtemp()).resolve()
91
notes_path: Path = temp_folder / "body.md"
92
- command: list[str] = ["uv", "run", "./scripts/get-release-notes.py", notes_path]
+ command: list[str | Path] = ["uv", "run", "./scripts/get-release-notes.py", notes_path]
93
subprocess.run(command, check=True)
94
95
notes_contents: str = notes_path.read_text()
0 commit comments