commit before uv rework

This commit is contained in:
2026-03-15 15:40:58 +01:00
parent beded927d2
commit cab4b6815e
3 changed files with 82 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
install:
pip install -r requirement.txt
run:
python3 a_maze_ing.py config.txt
debug:
pdb python3 a_maze_ing.py config.txt
clean:
rm -rf __pycache__ .mypy_cache
lint:
flake8 .
mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs
lint-strict:
flake8 .
mypy . --strict