File tree Expand file tree Collapse file tree 1 file changed +2
-35
lines changed Expand file tree Collapse file tree 1 file changed +2
-35
lines changed Original file line number Diff line number Diff line change @@ -288,44 +288,11 @@ class _LocIndexerFrame(_LocIndexer, Generic[_T]):
288
288
) -> None : ...
289
289
290
290
class _iAtIndexerFrame (_iAtIndexer , Generic [_T ]):
291
- @overload
292
291
def __getitem__ (self , idx : tuple [int , int ]) -> Scalar : ...
293
- @overload
294
- def __getitem__ (self , idx : IndexingInt ) -> Series : ...
295
- @overload
296
- def __getitem__ (self , idx : tuple [IndexType | MaskType , int ]) -> Series : ...
297
- @overload
298
- def __getitem__ (self , idx : tuple [int , IndexType | MaskType ]) -> Series : ...
299
- @overload
300
- def __getitem__ (
301
- self ,
302
- idx : (
303
- IndexType
304
- | MaskType
305
- | tuple [IndexType | MaskType , IndexType | MaskType ]
306
- | tuple [slice ]
307
- ),
308
- ) -> _T : ...
309
292
def __setitem__ (
310
293
self ,
311
- idx : (
312
- int
313
- | IndexType
314
- | tuple [int , int ]
315
- | tuple [IndexType , int ]
316
- | tuple [IndexType , IndexType ]
317
- | tuple [int , IndexType ]
318
- ),
319
- value : (
320
- Scalar
321
- | Series
322
- | DataFrame
323
- | np .ndarray
324
- | NAType
325
- | NaTType
326
- | Mapping [Hashable , Scalar | NAType | NaTType ]
327
- | None
328
- ),
294
+ idx : tuple [int , int ],
295
+ value : Scalar | NAType | NaTType | None ,
329
296
) -> None : ...
330
297
331
298
class _AtIndexerFrame (_AtIndexer , Generic [_T ]):
You can’t perform that action at this time.
0 commit comments