From 4e54f42b1b8b848a0e51ba29f8225db061ee596a Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Tue, 30 Jul 2024 09:58:09 -0700 Subject: [PATCH] Update ruff --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1cf27f3..f93bdb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,12 +47,12 @@ test-cov-xml = "pytest --cov-report=xml" lint = [ "isort .", "black .", - "ruff --fix .", + "ruff check --fix .", ] lint-check = [ "isort . --check-only", "black --check .", - "ruff .", + "ruff check .", ] docs-serve = "python scripts/generate_gallery.py;mkdocs serve" docs-build = "python scripts/postprocess_videos.py;python scripts/generate_gallery.py;mkdocs build"