typing fixup

This commit is contained in:
George Hotz
2023-02-27 09:52:04 -08:00
parent 9aaa7edd74
commit e74779f19d
8 changed files with 48 additions and 35 deletions

View File

@@ -40,7 +40,9 @@ jobs:
- name: Lint tinygrad with pylint
run: pylint tinygrad/
- name: Run mypy
run: mypy tinygrad/ test/ --ignore-missing-imports
run: |
mypy tinygrad/ --ignore-missing-imports --check-untyped-defs
mypy test/ --ignore-missing-imports
testcpu:
name: CPU Tests