@@ -491,7 +491,7 @@ def get_axe(block, qs, axes):
491491 values = values .take (indexer )
492492
493493 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 ]
495495 )
496496
497497 def isna (self , func ) -> "BlockManager" :
@@ -519,9 +519,7 @@ def where(
519519 def setitem (self , indexer , value ) -> "BlockManager" :
520520 return self .apply ("setitem" , indexer = indexer , value = value )
521521
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 ):
525523 transpose = self .ndim == 2
526524
527525 if align :
@@ -1923,7 +1921,7 @@ def _compare_or_regex_search(
19231921 """
19241922
19251923 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 ]
19271925 ):
19281926 """
19291927 Raises an error if the two arrays (a,b) cannot be compared.
0 commit comments