@@ -122,55 +122,55 @@ class _SupportsRXOr(Protocol[_T_contra, _T_co]):
122122
123123@type_check_only
124124class _SupportsIAdd (Protocol [_T_contra , _T_co ]):
125- def __iadd__ (self , other : _T_contra ) -> _T_co : ...
125+ def __iadd__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
126126
127127@type_check_only
128128class _SupportsIAnd (Protocol [_T_contra , _T_co ]):
129- def __iand__ (self , other : _T_contra ) -> _T_co : ...
129+ def __iand__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
130130
131131@type_check_only
132132class _SupportsILShift (Protocol [_T_contra , _T_co ]):
133- def __ilshift__ (self , other : _T_contra ) -> _T_co : ...
133+ def __ilshift__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
134134
135135@type_check_only
136136class _SupportsIMod (Protocol [_T_contra , _T_co ]):
137- def __imod__ (self , other : _T_contra ) -> _T_co : ...
137+ def __imod__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
138138
139139@type_check_only
140140class _SupportsIMul (Protocol [_T_contra , _T_co ]):
141- def __imul__ (self , other : _T_contra ) -> _T_co : ...
141+ def __imul__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
142142
143143@type_check_only
144144class _SupportsIMatMul (Protocol [_T_contra , _T_co ]):
145- def __imatmul__ (self , other : _T_contra ) -> _T_co : ...
145+ def __imatmul__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
146146
147147@type_check_only
148148class _SupportsIOr (Protocol [_T_contra , _T_co ]):
149- def __ior__ (self , other : _T_contra ) -> _T_co : ...
149+ def __ior__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
150150
151151@type_check_only
152152class _SupportsIPow (Protocol [_T_contra , _T_co ]):
153- def __ipow__ (self , other : _T_contra ) -> _T_co : ...
153+ def __ipow__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
154154
155155@type_check_only
156156class _SupportsIRShift (Protocol [_T_contra , _T_co ]):
157- def __irshift__ (self , other : _T_contra ) -> _T_co : ...
157+ def __irshift__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
158158
159159@type_check_only
160160class _SupportsISub (Protocol [_T_contra , _T_co ]):
161- def __isub__ (self , other : _T_contra ) -> _T_co : ...
161+ def __isub__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
162162
163163@type_check_only
164164class _SupportsITrueDiv (Protocol [_T_contra , _T_co ]):
165- def __itruediv__ (self , other : _T_contra ) -> _T_co : ...
165+ def __itruediv__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
166166
167167@type_check_only
168168class _SupportsIXOr (Protocol [_T_contra , _T_co ]):
169- def __ixor__ (self , other : _T_contra ) -> _T_co : ...
169+ def __ixor__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
170170
171171@type_check_only
172172class _SupportsIFloorDiv (Protocol [_T_contra , _T_co ]):
173- def __ifloordiv__ (self , other : _T_contra ) -> _T_co : ...
173+ def __ifloordiv__ (self , other : _T_contra ) -> _T_co : ... # noqa: Y034
174174
175175# All four comparison functions must have the same signature, or we get false-positive errors
176176def lt (a : _SupportsComparison , b : _SupportsComparison , / ) -> Any : ...
0 commit comments