Skip to content

Commit e06cf52

Browse files
committed
CLN: Clean up in code and doc
1 parent b6dc7e9 commit e06cf52

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

doc/source/whatsnew/v1.0.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Plotting
273273
- Bug where :meth:`DataFrame.boxplot` would not accept a `color` parameter like `DataFrame.plot.box` (:issue:`26214`)
274274
- Bug in the ``xticks`` argument being ignored for :meth:`DataFrame.plot.bar` (:issue:`14119`)
275275
- :func:`set_option` now validates that the plot backend provided to ``'plotting.backend'`` implements the backend when the option is set, rather than when a plot is created (:issue:`28163`)
276-
- Bug in BarPlot. Tick position where assigned by value order instead of using the value for numeric, or a smart order for sting. (:issue:`26186` and issue:`11465`)
276+
- Bug in BarPlot. Tick position where assigned by value order instead of using the value for numeric, or a smart order for sting. (:issue:`26186` and :issue:`11465`)
277277

278278
Groupby/resample/rolling
279279
^^^^^^^^^^^^^^^^^^^^^^^^

pandas/plotting/_matplotlib/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,8 +1364,6 @@ def _make_plot(self):
13641364
ax = self._get_ax(i)
13651365

13661366
if self.orientation == "vertical":
1367-
# import pdb
1368-
# pdb.set_trace()
13691367
ax.xaxis.update_units(self.ax_index)
13701368
self.tick_pos = ax.convert_xunits(self.ax_index)
13711369
self.ax_pos = self.tick_pos - self.tickoffset

0 commit comments

Comments
 (0)