Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2279b16

Browse files
committed
Fix style
1 parent e1985d7 commit 2279b16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2348,7 +2348,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23482348
if (orientation == 'vertical' and x.size > 0
23492349
and isinstance(x[0], Decimal)):
23502350
width = np.array([Decimal(itm) for itm in width])
2351-
elif (orientation == 'horizontal' and y.size > 0
2351+
elif (orientation == 'horizontal' and y.size > 0
23522352
and isinstance(y[0], Decimal)):
23532353
height = np.array([Decimal(itm) for itm in height])
23542354

0 commit comments

Comments
 (0)