File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ def length_of_indexer(indexer, target=None) -> int:
363
363
raise AssertionError ("cannot find the length of the indexer" )
364
364
365
365
366
- def deprecate_ndim_indexing (result , stacklevel : int = 3 ):
366
+ def deprecate_ndim_indexing (result , stacklevel : int = 3 ) -> None :
367
367
"""
368
368
Helper function to raise the deprecation warning for multi-dimensional
369
369
indexing on 1D Series/Index.
@@ -409,7 +409,7 @@ def unpack_1tuple(tup):
409
409
return tup
410
410
411
411
412
- def check_key_length (columns : Index , key , value : DataFrame ):
412
+ def check_key_length (columns : Index , key , value : DataFrame ) -> None :
413
413
"""
414
414
Checks if a key used as indexer has the same length as the columns it is
415
415
associated with.
You can’t perform that action at this time.
0 commit comments