Skip to content

Commit

Permalink
mypy: Ignore pytorch type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtseng committed Jan 7, 2025
1 parent 49b3e70 commit f64b3fc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[mypy]
ignore_missing_imports = true
exclude = output

# torch had some type errors, we ignore them because they're not our fault
[mypy-torch._dynamo.*]
follow_imports = skip
follow_imports_for_stubs = True

0 comments on commit f64b3fc

Please sign in to comment.