From 174df7e572b8cc9c76ccb271a3f6198487d798dd Mon Sep 17 00:00:00 2001 From: "Thomas (Tom) C. Gorordo" Date: Wed, 20 May 2026 12:21:50 -0700 Subject: [PATCH] add marimo to justfile --- justfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 962dde2..4138fd9 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,12 @@ list: run spreadsheet: uv run smithy {{spreadsheet}} +marimo: + uv run marimo --edit + +example: + uv run python src/main.py test/test_ballot.csv + check: uv run pyright src @@ -13,13 +19,9 @@ test: format: uv run ruff format src test -example: - uv run python src/main.py test/test_ballot.csv - compile: uv run pyinstaller --clean -F src/main.py --name smithy - clean: uv run pyclean src test uv run ruff clean