From fef6b5c1cfc4f7ff084e4c0de51180eaabece69c Mon Sep 17 00:00:00 2001 From: "Thomas (Tom) C. Gorordo" Date: Fri, 18 Apr 2025 05:34:49 -0700 Subject: [PATCH] rename cli --- .gitignore | 3 +-- justfile | 2 +- src/{cmd.py => cli.py} | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename src/{cmd.py => cli.py} (100%) diff --git a/.gitignore b/.gitignore index 09d1506..e4b21d0 100644 --- a/.gitignore +++ b/.gitignore @@ -5,8 +5,7 @@ __pycache__/ .venv/ venv/ -main.spec -cmd.spec +cli.spec gui.spec build/ dist/ diff --git a/justfile b/justfile index 752129b..f4b1ff5 100644 --- a/justfile +++ b/justfile @@ -11,7 +11,7 @@ format: uv run ruff format src test compile: - uv run pyinstaller src/cmd.py + uv run pyinstaller src/cli.py uv run pyinstaller src/gui.py clean: diff --git a/src/cmd.py b/src/cli.py similarity index 100% rename from src/cmd.py rename to src/cli.py