From 8b5cd64656362d698ebc84cb2c55c0f2e5914421 Mon Sep 17 00:00:00 2001 From: leej3 Date: Thu, 20 Jun 2024 18:37:34 +0100 Subject: [PATCH] fix ruff formatting check --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 2831f21c..b17c2750 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39, py310, py311, py312, lint +envlist = py39, py310, py311, py312, lint, format [testenv] deps = @@ -15,6 +15,6 @@ commands = ruff check . [testenv:format] -description = Run ruff to format the code +description = Check that code is formatted with ruff commands = - ruff check --fix . \ No newline at end of file + ruff format --check \ No newline at end of file