Merge pull request #3593 from wyfo/fix_nox

fix: replace removed `fmt` session by `rustfmt` and `ruff`
This commit is contained in:
David Hewitt 2023-11-22 20:51:31 +00:00 committed by GitHub
commit 81df150823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
nox.options.sessions = ["test", "clippy", "fmt", "docs"]
nox.options.sessions = ["test", "clippy", "rustfmt", "ruff", "docs"]
PYO3_DIR = Path(__file__).parent