Skip to content

Commit a527164

Browse files
committed
🐛 Fix typo in nox "upload-package" session
1 parent c031696 commit a527164

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

{{ cookiecutter.app_name }}/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def build_package(session: nox.Session) -> None:
163163
def upload_package(session: nox.Session) -> None:
164164
"""Builds the package, both as a source distribution (sdist) and as a wheel."""
165165
# check whether the package's long description will render correctly on PyPI
166-
session.run("uvx" "twine", "check", "--strict", f"{PACKAGE_DIST_DIR.as_posix()}/*")
166+
session.run("uvx", "twine", "check", "--strict", f"{PACKAGE_DIST_DIR.as_posix()}/*")
167167

168168
# upload the package(s) to (Test)PyPI
169169
session.run("uv", "publish", *session.posargs, f"{PACKAGE_DIST_DIR.as_posix()}/*")

0 commit comments

Comments
 (0)