File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,5 +96,5 @@ extra-standard-library = [
96
96
known-first-party = [" parse_metadata" , " utils" ]
97
97
98
98
[tool .typeshed ]
99
- pyright_version = " 1.1.334 "
99
+ pyright_version = " 1.1.339 "
100
100
oldest_supported_python = " 3.7"
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ class _CDataMeta(type):
51
51
# By default mypy complains about the following two methods, because strictly speaking cls
52
52
# might not be a Type[_CT]. However this can never actually happen, because the only class that
53
53
# uses _CDataMeta as its metaclass is _CData. So it's safe to ignore the errors here.
54
- def __mul__ (cls : type [_CT ], other : int ) -> type [Array [_CT ]]: ... # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues]
55
- def __rmul__ (cls : type [_CT ], other : int ) -> type [Array [_CT ]]: ... # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues]
54
+ def __mul__ (cls : type [_CT ], other : int ) -> type [Array [_CT ]]: ... # type: ignore[misc]
55
+ def __rmul__ (cls : type [_CT ], other : int ) -> type [Array [_CT ]]: ... # type: ignore[misc]
56
56
57
57
class _CData (metaclass = _CDataMeta ):
58
58
_b_base_ : int
You can’t perform that action at this time.
0 commit comments