@@ -61,12 +61,12 @@ def _config_changed(self, name, old, new):
6161 'savefig.dpi' : 72 ,
6262 # 10pt still needs a little more room on the xlabel:
6363 'figure.subplot.bottom' : .125
64- },
64+ },
6565 help = """Subset of matplotlib rcParams that should be different for the
6666 inline backend."""
6767 ).tag (config = True )
6868
69- figure_formats = Set ({'png' },
69+ figure_formats = Set ({'png' },
7070 help = """A set of figure formats to enable: 'png',
7171 'retina', 'jpeg', 'svg', 'pdf'.""" ).tag (config = True )
7272
@@ -88,15 +88,15 @@ def _figure_format_changed(self, name, old, new):
8888 if new :
8989 self .figure_formats = {new }
9090
91- print_figure_kwargs = Dict ({'bbox_inches' : 'tight' },
91+ print_figure_kwargs = Dict ({'bbox_inches' : 'tight' },
9292 help = """Extra kwargs to be passed to fig.canvas.print_figure.
9393
9494 Logical examples include: bbox_inches, quality (for jpeg figures), etc.
9595 """
9696 ).tag (config = True )
9797 _print_figure_kwargs_changed = _update_figure_formatters
9898
99- close_figures = Bool (True ,
99+ close_figures = Bool (True ,
100100 help = """Close all figures at the end of each cell.
101101
102102 When True, ensures that each cell starts with no active figures, but it
0 commit comments