File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1814,7 +1814,7 @@ def _draw_frame(self, framedata):
1814
1814
self ._drawn_artists = self ._func (framedata , * self ._args )
1815
1815
if self ._blit :
1816
1816
if self ._drawn_artists is None :
1817
- raise RuntimeError ('The animation function must return a '
1818
- 'sequence of Artist objects.' )
1817
+ raise RuntimeError ('The animation function must return a '
1818
+ 'sequence of Artist objects.' )
1819
1819
for a in self ._drawn_artists :
1820
1820
a .set_animated (self ._blit )
Original file line number Diff line number Diff line change @@ -877,7 +877,7 @@ def get_markeredgecolor(self):
877
877
if self ._marker .get_marker () in ('.' , ',' ):
878
878
return self ._color
879
879
if self ._marker .is_filled () and self .get_fillstyle () != 'none' :
880
- return 'k' # Bad hard-wired default...
880
+ return 'k' # Bad hard-wired default...
881
881
return self ._color
882
882
else :
883
883
return mec
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ def xlformat_factory(format):
55
55
56
56
xlstyle = excel .XFStyle ()
57
57
if isinstance (format , mlab .FormatPercent ):
58
- zeros = '' .join (['0' ]* format .precision )
59
- xlstyle .num_format_str = '0.%s%%;[RED]-0.%s%%' % (zeros , zeros )
60
- format .scale = 1.
58
+ zeros = '' .join (['0' ]* format .precision )
59
+ xlstyle .num_format_str = '0.%s%%;[RED]-0.%s%%' % (zeros , zeros )
60
+ format .scale = 1.
61
61
elif isinstance (format , mlab .FormatFloat ):
62
62
if format .precision > 0 :
63
63
zeros = '' .join (['0' ]* format .precision )
You can’t perform that action at this time.
0 commit comments