@@ -491,7 +491,7 @@ def get_axe(block, qs, axes):
491
491
values = values .take (indexer )
492
492
493
493
return SingleBlockManager (
494
- make_block (values , ndim = 1 , placement = np .arange (len (values ))), axes [0 ],
494
+ make_block (values , ndim = 1 , placement = np .arange (len (values ))), axes [0 ]
495
495
)
496
496
497
497
def isna (self , func ) -> "BlockManager" :
@@ -519,9 +519,7 @@ def where(
519
519
def setitem (self , indexer , value ) -> "BlockManager" :
520
520
return self .apply ("setitem" , indexer = indexer , value = value )
521
521
522
- def putmask (
523
- self , mask , new , align : bool = True , axis : int = 0 ,
524
- ):
522
+ def putmask (self , mask , new , align : bool = True , axis : int = 0 ):
525
523
transpose = self .ndim == 2
526
524
527
525
if align :
@@ -1923,7 +1921,7 @@ def _compare_or_regex_search(
1923
1921
"""
1924
1922
1925
1923
def _check_comparison_types (
1926
- result : Union [ArrayLike , bool ], a : ArrayLike , b : Union [Scalar , Pattern ],
1924
+ result : Union [ArrayLike , bool ], a : ArrayLike , b : Union [Scalar , Pattern ]
1927
1925
):
1928
1926
"""
1929
1927
Raises an error if the two arrays (a,b) cannot be compared.
0 commit comments