Skip to content

Commit 2c5dbc8

Browse files
committed
fix incorrect uv commands
'uv run precommit install'--change to 'uv run pre-commit install' 'uv ruff check .'--change to 'uv run ruff check .' 'uv format .'--change to 'uv run ruff format .'
1 parent 52ed983 commit 2c5dbc8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Executing the tests:
1010
$ uv venv
1111
$ uv pip install -r requirements.txt
1212
$ uv pip install -e .
13-
$ uv ruff check .
14-
$ uv format .
13+
$ uv run ruff check .
14+
$ uv run ruff format .
1515
$ uv run pytest
1616

1717
or with [tox](https://pypi.org/project/tox/) installed:
@@ -21,7 +21,7 @@ or with [tox](https://pypi.org/project/tox/) installed:
2121

2222
Use of pre-commit is recommended:
2323

24-
$ uv run precommit install
24+
$ uv run pre-commit install
2525

2626

2727
Documentation is published with [mkdocs]():

0 commit comments

Comments
 (0)