Skip to content

Commit 286be72

Browse files
committed
replace yapf reference with instruction to use 'ruff format'
1 parent 3e7e203 commit 286be72

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ coverage report
6565
{%- if AddLinting -%}
6666
## Running linters locally
6767

68-
For linting and sorting imports we will use [ruff](https://beta.ruff.rs/docs/). Running the linters requires an
68+
For linting and sorting imports we will use [ruff](https://docs.astral.sh/ruff/). Running the linters requires an
6969
activated virtual environment with the development tools installed.
7070

7171
```shell
@@ -76,7 +76,11 @@ ruff check .
7676
ruff check . --fix
7777
```
7878

79-
To fix readability of your code style you can use [yapf](https://github.com/google/yapf).
79+
It also provides a command to fix readability of your code style:
80+
81+
```shell
82+
ruff format .
83+
```
8084
{%- endif -%}
8185

8286
{%- if AddPreCommit -%}

0 commit comments

Comments
 (0)