Skip to content

Commit e8dac0d

Browse files
committed
Change the dispatch to the new method
1 parent d9ca602 commit e8dac0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7291,7 +7291,7 @@ def f(x):
72917291
if filter_type is None or filter_type == 'numeric':
72927292
data = self._get_numeric_data()
72937293
elif filter_type == 'bool':
7294-
data = self._get_bool_data()
7294+
data = self._get_data()
72957295
else: # pragma: no cover
72967296
msg = ("Generating numeric_only data with filter_type {f}"
72977297
"not supported.".format(f=filter_type))

0 commit comments

Comments
 (0)