Run Ruff linter and cleanup a huge amount of unnecessary imports

This commit is contained in:
Jay Lee
2026-07-04 15:43:50 -04:00
parent 4e662bde69
commit dcf24c9e84
95 changed files with 115 additions and 275 deletions

View File

@@ -544,6 +544,12 @@ jobs:
"$PYTHON" -m pip install pytest
"$PYTHON" -m pytest ../tests/ -v
- name: Lint with ruff
run: |
"$PYTHON" -m pip install ruff
ruff check ../src/gam/
ruff check ../tests/
- name: Install PyInstaller
if: matrix.goal == 'build'
run: |