From 50460dcc7f7e58fdf18e9458683d7d6d1a761bcc Mon Sep 17 00:00:00 2001 From: eccabay Date: Fri, 5 Jul 2024 10:43:11 -0400 Subject: [PATCH] Fix ruff command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 89a481a367..46cf8c786d 100644 --- a/Makefile +++ b/Makefile @@ -14,13 +14,13 @@ lint: python docs/notebook_version_standardizer.py check-versions python docs/notebook_version_standardizer.py check-execution black . --check --config=./pyproject.toml - ruff . --config=./pyproject.toml + ruff check . --config=./pyproject.toml .PHONY: lint-fix lint-fix: python docs/notebook_version_standardizer.py standardize black . --config=./pyproject.toml - ruff . --config=./pyproject.toml --fix + ruff check . --config=./pyproject.toml --fix .PHONY: test test: