From 282b3af45d243c19f2c648c72d7561e4026da14f Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 10 Jul 2023 07:41:49 -0700 Subject: [PATCH] Run black at end of just fix To ensure any changes made by ruff --fix are reformatted. --- Justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index d1f6843..e6b3f8a 100644 --- a/Justfile +++ b/Justfile @@ -29,5 +29,6 @@ pipenv run black . # Run automatic fixes -@fix: cog black +@fix: cog pipenv run ruff . --fix + pipenv run black .