From 499470c83f08dcd3fe5728fb5c7df92cda116f50 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Wed, 31 Jul 2024 22:00:59 -0400 Subject: [PATCH] Update ruff invocation --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9636483..bc90cf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,8 +61,8 @@ changelog = "https://github.com/nvictus/pqdict/blob/master/CHANGES" path = "pqdict/__init__.py" [tool.hatch.envs.default.scripts] -lint = "ruff ." -fix = "ruff --fix ." +lint = "ruff check ." +fix = "ruff check --fix ." test = "pytest" docs = "sphinx-autobuild docs docs/_build/html"