chore: remove cashed

This commit is contained in:
Wikid82
2025-11-24 18:22:01 +00:00
parent 9c842e7eab
commit 6feff3e8ce
289 changed files with 39795 additions and 0 deletions

12
tools/python_compile_check.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
# Run python -m compileall quietly to catch syntax errors in the repo.
if command -v python3 &>/dev/null; then
python3 -m compileall -q .
elif command -v python &>/dev/null; then
python -m compileall -q .
else
echo "Error: neither python3 nor python found."
exit 1
fi