Skip to content

Commit c85b2a6

Browse files
committed
fix: remove uv run from template lint ruff calls
1 parent 5629984 commit c85b2a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ def lint(session: Session):
138138

139139
locations: list[str] = [str(loc) for loc in TEMPLATE_PYTHON_LOCATIONS]
140140
session.log(f"Running Ruff formatter check on template files with py{session.python}.")
141-
session.run("uv", "run", "ruff", "format", *locations, "--check", external=True)
141+
session.run("ruff", "format", *locations, "--check")
142142

143143
session.log(f"Running Ruff check on template files with py{session.python}.")
144-
session.run("uv", "run", "ruff", "check", *locations, "--verbose", external=True)
144+
session.run("ruff", "check", *locations, "--verbose")
145145

146146

147147
@nox.session(python=DEFAULT_TEMPLATE_PYTHON_VERSION)

0 commit comments

Comments
 (0)