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

Skip to content

Commit 5e17d66

Browse files
committed
STY: fix whitespace
1 parent 6af7702 commit 5e17d66

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2197,8 +2197,7 @@ def make_iterable(x):
21972197

21982198
@docstring.dedent_interpd
21992199
def barh(self, bottom, width, height=0.8, left=None, **kwargs):
2200-
"""
2201-
Make a horizontal bar plot.
2200+
"""Make a horizontal bar plot.
22022201
22032202
Make a horizontal bar plot with rectangles bounded by:
22042203
@@ -2260,11 +2259,11 @@ def barh(self, bottom, width, height=0.8, left=None, **kwargs):
22602259
`capsize` may be specified here rather than as independent kwargs.
22612260
22622261
align : {'center', 'edge'}, optional
2263-
If 'edge', aligns bars by their left edges (for vertical bars) and
2264-
by their bottom edges (for horizontal bars). If 'center', interpret
2265-
the `bottom` argument as the coordinates of the centers of the bars.
2266-
To align on the align bars on the top edge pass a negative
2267-
`height`.
2262+
If 'edge', aligns bars by their left edges (for vertical
2263+
bars) and by their bottom edges (for horizontal bars). If
2264+
'center', interpret the `bottom` argument as the
2265+
coordinates of the centers of the bars. To align on the
2266+
align bars on the top edge pass a negative `height`.
22682267
22692268
log : boolean, optional, default: False
22702269
If true, sets the axis to be log scale
@@ -2286,6 +2285,7 @@ def barh(self, bottom, width, height=0.8, left=None, **kwargs):
22862285
See also
22872286
--------
22882287
bar: Plot a vertical bar plot.
2288+
22892289
"""
22902290

22912291
patches = self.bar(left=left, height=height, width=width,

0 commit comments

Comments
 (0)