mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
[dynamo] Enable typechecking for replay_record.py (#112562)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/112562 Approved by: https://github.com/Skylion007 ghstack dependencies: #112561
This commit is contained in:
parent
b8ac5bbcbd
commit
ca4fe028c8
2 changed files with 4 additions and 0 deletions
|
|
@ -186,6 +186,7 @@ include_patterns = [
|
|||
'torch/_dynamo/exc.py',
|
||||
'torch/_dynamo/funcname_cache.py',
|
||||
'torch/_dynamo/convert_frame.py',
|
||||
'torch/_dynamo/replay_record.py',
|
||||
'torch/_dynamo/symbolic_convert.py',
|
||||
'torch/_dynamo/testing.py',
|
||||
'torch/_dynamo/types.py',
|
||||
|
|
|
|||
|
|
@ -26,6 +26,9 @@ python_version = 3.11
|
|||
[mypy-deeplearning.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-dill.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-sympy]
|
||||
ignore_missing_imports = True
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue