File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -848,7 +848,7 @@ def _can_fast_transpose(self) -> bool:
848
848
849
849
dtype = blocks [0 ].dtype
850
850
# TODO(EA2D) special case would be unnecessary with 2D EAs
851
- return not is_1d_only_ea_dtype (dtype )
851
+ return not is_1d_only_ea_dtype (dtype )
852
852
853
853
# ----------------------------------------------------------------------
854
854
# Rendering Methods
Original file line number Diff line number Diff line change 32
32
33
33
34
34
class Base :
35
- """ base class for index sub-class tests """
35
+ """
36
+ Base class for index sub-class tests.
37
+ """
36
38
37
39
_index_cls : Type [Index ]
38
40
@@ -766,7 +768,9 @@ def test_index_groupby(self, simple_index):
766
768
767
769
768
770
class NumericBase (Base ):
769
- """ base class for numeric index (incl. RangeIndex) sub-class tests """
771
+ """
772
+ Base class for numeric index (incl. RangeIndex) sub-class tests.
773
+ """
770
774
771
775
def test_where (self ):
772
776
# Tested in numeric.test_indexing
You can’t perform that action at this time.
0 commit comments