From 03ac85a967f6b3be88b8efc486949d1eed69ab79 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sun, 21 Apr 2024 11:21:11 -0500 Subject: [PATCH] chore: performance enhancement for fmt in justfile --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 81956e0..7b7e6ea 100644 --- a/justfile +++ b/justfile @@ -43,7 +43,8 @@ fmt: else poetry run black . fi - find . -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; + find deepdog -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; + find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; # release the app, checking that our working tree is clean and ready for release release: