@@ -211,7 +211,7 @@ class NAType:
211
211
@overload
212
212
def __and__ (self , other : Index , / ) -> Index : ... # type: ignore[overload-overlap]
213
213
@overload
214
- def __and__ (self , other : Literal [False ], / ) -> Literal [False ]: ...
214
+ def __and__ (self , other : Literal [False ], / ) -> Literal [False ]: ... # type: ignore[overload-overlap]
215
215
@overload
216
216
def __and__ (self , other : object , / ) -> NAType : ...
217
217
@overload
@@ -221,7 +221,7 @@ class NAType:
221
221
@overload
222
222
def __rand__ (self , other : Index , / ) -> Index : ... # type: ignore[overload-overlap]
223
223
@overload
224
- def __rand__ (self , other : Literal [False ], / ) -> Literal [False ]: ...
224
+ def __rand__ (self , other : Literal [False ], / ) -> Literal [False ]: ... # type: ignore[overload-overlap]
225
225
@overload
226
226
def __rand__ (self , other : object , / ) -> NAType : ...
227
227
@overload
@@ -231,7 +231,7 @@ class NAType:
231
231
@overload
232
232
def __or__ (self , other : Index , / ) -> Index : ... # type: ignore[overload-overlap]
233
233
@overload
234
- def __or__ (self , other : Literal [True ], / ) -> Literal [True ]: ...
234
+ def __or__ (self , other : Literal [True ], / ) -> Literal [True ]: ... # type: ignore[overload-overlap]
235
235
@overload
236
236
def __or__ (self , other : object , / ) -> NAType : ...
237
237
@overload
@@ -241,7 +241,7 @@ class NAType:
241
241
@overload
242
242
def __ror__ (self , other : Index , / ) -> Index : ... # type: ignore[overload-overlap]
243
243
@overload
244
- def __ror__ (self , other : Literal [True ], / ) -> Literal [True ]: ...
244
+ def __ror__ (self , other : Literal [True ], / ) -> Literal [True ]: ... # type: ignore[overload-overlap]
245
245
@overload
246
246
def __ror__ (self , other : object , / ) -> NAType : ...
247
247
@overload
0 commit comments