[BE]: Update mypy to 1.10.0 (#127717)

Updates mypy to the latest and greatest.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/127717
Approved by: https://github.com/ezyang
This commit is contained in:
Aaron Gokaslan
2024-06-02 21:07:23 +00:00
committed by PyTorch MergeBot
parent fb53cd6497
commit 30213ab0a7
6 changed files with 11 additions and 7 deletions

View File

@ -117,7 +117,7 @@ class lazy_property:
def __init__(self, wrapped):
self.wrapped = wrapped
update_wrapper(self, wrapped)
update_wrapper(self, wrapped) # type:ignore[arg-type]
def __get__(self, instance, obj_type=None):
if instance is None: