@@ -61,12 +61,12 @@ def _config_changed(self, name, old, new):
61
61
'savefig.dpi' : 72 ,
62
62
# 10pt still needs a little more room on the xlabel:
63
63
'figure.subplot.bottom' : .125
64
- },
64
+ },
65
65
help = """Subset of matplotlib rcParams that should be different for the
66
66
inline backend."""
67
67
).tag (config = True )
68
68
69
- figure_formats = Set ({'png' },
69
+ figure_formats = Set ({'png' },
70
70
help = """A set of figure formats to enable: 'png',
71
71
'retina', 'jpeg', 'svg', 'pdf'.""" ).tag (config = True )
72
72
@@ -88,15 +88,15 @@ def _figure_format_changed(self, name, old, new):
88
88
if new :
89
89
self .figure_formats = {new }
90
90
91
- print_figure_kwargs = Dict ({'bbox_inches' : 'tight' },
91
+ print_figure_kwargs = Dict ({'bbox_inches' : 'tight' },
92
92
help = """Extra kwargs to be passed to fig.canvas.print_figure.
93
93
94
94
Logical examples include: bbox_inches, quality (for jpeg figures), etc.
95
95
"""
96
96
).tag (config = True )
97
97
_print_figure_kwargs_changed = _update_figure_formatters
98
98
99
- close_figures = Bool (True ,
99
+ close_figures = Bool (True ,
100
100
help = """Close all figures at the end of each cell.
101
101
102
102
When True, ensures that each cell starts with no active figures, but it
0 commit comments