Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac0117 commit c17dda6Copy full SHA for c17dda6
lib/matplotlib/axis.py
@@ -2114,11 +2114,11 @@ def set_ticks_position(self, position):
2114
if position == 'right':
2115
self.set_tick_params(which='both', right=True, labelright=True,
2116
left=False, labelleft=False)
2117
- self.set_offset_position(position)
+ self.set_offset_position(position)
2118
elif position == 'left':
2119
self.set_tick_params(which='both', right=False, labelright=False,
2120
left=True, labelleft=True)
2121
2122
elif position == 'both':
2123
self.set_tick_params(which='both', right=True,
2124
left=True)
0 commit comments