@@ -18,11 +18,11 @@ def _fn_name(): return sys._getframe(1).f_code.co_name
1818from matplotlib import verbose , __version__ , rcParams , checkdep_ghostscript
1919from matplotlib ._pylab_helpers import Gcf
2020from matplotlib .afm import AFM
21- from matplotlib .backend_bases import RendererBase , GraphicsContextBase ,\
22- FigureManagerBase , FigureCanvasBase
21+ from matplotlib .backend_bases import ( RendererBase , GraphicsContextBase ,
22+ FigureManagerBase , FigureCanvasBase )
2323
24- from matplotlib .cbook import get_realpath_and_stat , \
25- is_writable_file_like , maxdict , file_requires_unicode
24+ from matplotlib .cbook import ( get_realpath_and_stat , is_writable_file_like ,
25+ maxdict , file_requires_unicode )
2626from matplotlib .figure import Figure
2727
2828from matplotlib .font_manager import findfont , is_opentype_cff_font , get_font
@@ -148,7 +148,7 @@ def _num_to_str(val):
148148 if isinstance (val , six .string_types ): return val
149149
150150 ival = int (val )
151- if val == ival : return str (ival )
151+ if val == ival : return str (ival )
152152
153153 s = "%1.3f" % val
154154 s = s .rstrip ("0" )
0 commit comments