Skip to content

Commit 9630ee5

Browse files
committed
Updated '&' to 'and'
1 parent 2a8f126 commit 9630ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_matplotlib/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,7 @@ def _make_plot(self, fig: Figure) -> None:
19341934

19351935
self.subplots: list[Any]
19361936

1937-
if bool(self.subplots) & self.stacked:
1937+
if bool(self.subplots) and self.stacked:
19381938
for i, sub_plot in enumerate(self.subplots):
19391939
if len(sub_plot) <= 1:
19401940
continue

0 commit comments

Comments
 (0)