Skip to content

Commit 101ee62

Browse files
committed
Updated missing () after .all
1 parent e4d5040 commit 101ee62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/test_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ def _BSS_subplot_checker(BSS_data, BSS_df, subplot_data_df, subplot_columns):
726726
sliced_df = subplot_sliced_by_source[i]
727727
if i == 0:
728728
# Checks that the bar chart starts y=0
729-
assert (sliced_df["y_coord"] == 0).all
729+
assert (sliced_df["y_coord"] == 0).all()
730730
height_iter = sliced_df["y_coord"].add(sliced_df["height"])
731731
else:
732732
height_iter = height_iter + sliced_df["height"]

0 commit comments

Comments
 (0)