fix: replace removed `fmt` session by `rustfmt` and `ruff`

This commit is contained in:
Joseph Perez 2023-11-22 21:00:51 +01:00
parent abe518d164
commit 226a2a3f7a
No known key found for this signature in database
GPG Key ID: FE77882EF19365C5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from typing import Any, Callable, Dict, List, Optional, Tuple
import nox import nox
nox.options.sessions = ["test", "clippy", "fmt", "docs"] nox.options.sessions = ["test", "clippy", "rustfmt", "ruff", "docs"]
PYO3_DIR = Path(__file__).parent PYO3_DIR = Path(__file__).parent