Skip to content

Commit d094095

Browse files
committed
Fix ruff instructions in template/README.dev.md
Instead of 'ruff .', use 'ruff check .'. Related to #581
1 parent 50d6dd7 commit d094095

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

template/{% if AddDevDoc %}README.dev.md{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ activated virtual environment with the development tools installed.
7070

7171
```shell
7272
# linter
73-
ruff .
73+
ruff check .
7474

7575
# linter with automatic fixing
76-
ruff . --fix
76+
ruff check . --fix
7777
```
7878

7979
To fix readability of your code style you can use [yapf](https://github.com/google/yapf).

0 commit comments

Comments
 (0)