From 226a2a3f7a4a795bd7e1764c2cd1dfb776709a5e Mon Sep 17 00:00:00 2001 From: Joseph Perez Date: Wed, 22 Nov 2023 21:00:51 +0100 Subject: [PATCH] fix: replace removed `fmt` session by `rustfmt` and `ruff` --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 32ca6715..c91f5b57 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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