Skip to content

Commit 267af05

Browse files
committed
CLN: Remove duplicate code line
1 parent 7f53fb5 commit 267af05

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/plotting/_matplotlib/core.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1364,11 +1364,10 @@ def _make_plot(self):
13641364
if self.orientation == "vertical":
13651365
ax.xaxis.update_units(self.ax_index)
13661366
self.tick_pos = ax.convert_xunits(self.ax_index).astype(np.int)
1367-
self.ax_pos = self.tick_pos - self.tickoffset
13681367
elif self.orientation == "horizontal":
13691368
ax.yaxis.update_units(self.ax_index)
13701369
self.tick_pos = ax.convert_yunits(self.ax_index).astype(np.int)
1371-
self.ax_pos = self.tick_pos - self.tickoffset
1370+
self.ax_pos = self.tick_pos - self.tickoffset
13721371

13731372
kwds = self.kwds.copy()
13741373
if self._is_series:

0 commit comments

Comments
 (0)