Skip to content

Commit 843f73d

Browse files
timhoffmQuLogic
andauthored
Apply suggestions from code review
Co-authored-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
1 parent c3a9e8e commit 843f73d

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

lib/matplotlib/axes/_axes.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3040,7 +3040,6 @@ def broken_barh(self, xranges, yrange, align="bottom", **kwargs):
30403040
# _convert_dx() in the same way as width handling in bar().
30413041
y0 = self.convert_yunits(ypos)
30423042
dy = self._convert_dx(height, ypos, np.array(y0), self.convert_yunits)
3043-
print(type(y0), type(dy))
30443043

30453044
_api.check_in_list(['bottom', 'center', 'top'], align=align)
30463045
if align == "bottom":
@@ -3060,7 +3059,6 @@ def broken_barh(self, xranges, yrange, align="bottom", **kwargs):
30603059
x0, x1 = self.convert_xunits((x0, x0 + dx))
30613060
vertices.append([(x0, y0), (x0, y1), (x1, y1), (x1, y0)])
30623061

3063-
print(vertices)
30643062
col = mcoll.PolyCollection(np.array(vertices), **kwargs)
30653063
self.add_collection(col)
30663064

0 commit comments

Comments
 (0)