We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b466e commit 1228510Copy full SHA for 1228510
pandas/core/generic.py
@@ -3369,8 +3369,6 @@ class max_speed
3369
3370
nv.validate_take(tuple(), kwargs)
3371
3372
- self._consolidate_inplace()
3373
-
3374
new_data = self._mgr.take(
3375
indices, axis=self._get_block_manager_axis(axis), verify=True
3376
)
pandas/core/internals/managers.py
@@ -675,8 +675,6 @@ def is_mixed_type(self) -> bool:
675
676
@property
677
def is_numeric_mixed_type(self) -> bool:
678
- # Warning, consolidation needs to get checked upstairs
679
680
return all(block.is_numeric for block in self.blocks)
681
682
0 commit comments