From df5a7db84432f4f60698b2ddb97a9f8955dd97fb Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Sat, 21 Dec 2024 19:05:04 +0530 Subject: Refactor for modularity, package --- Justfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Justfile') diff --git a/Justfile b/Justfile index 5c62e93..76bebd4 100644 --- a/Justfile +++ b/Justfile @@ -1,7 +1,10 @@ -check: typecheck lint +check: typecheck check_style typecheck: pyright -lint: - black --check *.py +check_style: + black --check src + +format: + black src -- cgit v1.2.3-57-g22cb