Skip to content

Commit 297846e

Browse files
committed
Remove is_bool in function get_bool_data
1 parent 52a2bb4 commit 297846e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/managers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def get_bool_data(self, copy=False):
640640
Whether to copy the blocks
641641
"""
642642
self._consolidate_inplace()
643-
return self.combine([b for b in self.blocks if b.is_bool], copy)
643+
return self.combine([b for b in self.blocks], copy)
644644

645645
def get_numeric_data(self, copy=False):
646646
"""

0 commit comments

Comments
 (0)