mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
[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:
committed by
PyTorch MergeBot
parent
fb53cd6497
commit
30213ab0a7
@ -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:
|
||||
|
Reference in New Issue
Block a user