8000 Wrapped a line of code as requested. · matplotlib/matplotlib@a05a508 · GitHub
[go: up one dir, main page]

Skip to content

Commit a05a508

Browse files
author
James Evans
committed
Wrapped a line of code as requested.
1 parent 4a6f09a commit a05a508

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2276,7 +2276,9 @@ def broken_barh(self, xranges, yrange, **kwargs):
22762276
.. plot:: mpl_examples/pylab_examples/broken_barh.py
22772277
"""
22782278
# process the unit information
2279-
self._process_unit_info(xdata=xranges[0], ydata=yrange[0], kwargs=kwargs)
2279+
self._process_unit_info(xdata=xranges[0],
2280+
ydata=yrange[0],
2281+
kwargs=kwargs)
22802282
xranges = self.convert_xunits(xranges)
22812283
yrange = self.convert_yunits(yrange)
22822284

0 commit comments

Comments
 (0)
0