We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b44037 commit f9e9d58Copy full SHA for f9e9d58
lib/matplotlib/ticker.py
@@ -810,8 +810,8 @@ def raise_if_exceeds(self, locs):
810
'raise a RuntimeError if Locator attempts to create more than MAXTICKS locs'
811
if len(locs)>=self.MAXTICKS:
812
raise RuntimeError(('Locator attempting to generate %d ticks from '
813
- '%s to %s: exceeds Locator.MAXTICKS' %
814
- (len(locs), locs[0], locs[-1])))
+ '%s to %s: exceeds Locator.MAXTICKS') %
+ (len(locs), locs[0], locs[-1]))
815
816
return locs
817
0 commit comments