From e6ffe6c55a14bb432d2d852fd708935cc6844cc3 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Wed, 11 Sep 2024 15:00:11 -0400 Subject: [PATCH] Use `ruff check .` instead of older `ruff .` that no longer works --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7fedbcf..1ada59c 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,7 @@ description = Lint with ruff base_python = py312 extras = lint commands = - ruff . + ruff check . [testenv:mypy-py{37,38,39,310,311,312}] description = Typecheck with mypy