chore: remove black as dependency (#808)

We use `ruff` in CI and dev workflow now.
This commit is contained in:
Lei Xu
2024-01-11 10:58:49 -08:00
committed by Weston Pace
parent 4b243c5ff8
commit 45b006d68c
3 changed files with 6 additions and 9 deletions

View File

@@ -45,8 +45,8 @@ pytest
To run linter and automatically fix all errors:
```bash
black .
isort .
ruff format python
ruff --fix python
```
If any packages are missing, install them with:
@@ -82,4 +82,4 @@ pip install tantivy
To run the unit tests:
```bash
pytest
```
```