From 44f144498718743cb6844ae30b1a9122367a8d68 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Sun, 31 Aug 2025 18:20:42 -0400 Subject: [PATCH] Use Ruff instead of Black for formatting Ruff is faster and now provides the same functionality as Black. --- tox.ini | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index e305d9cc..68edcbd4 100644 --- a/tox.ini +++ b/tox.ini @@ -38,11 +38,10 @@ extras = [testenv:ruff] deps = - black ruff commands = - ruff check . - black --check . + ruff check + ruff format --check skip_install = true [pytest]