@@ -425,12 +425,12 @@ def __call__(self, s):
425425 'figure.facecolor' : [ '0.75' , validate_color ], # facecolor; scalar gray
426426 'figure.edgecolor' : [ 'w' , validate_color ], # edgecolor; white
427427
428- 'figure.subplot.left' : [0.125 , ValidateInterval (0 , 1 , closedmin = False , closedmax = False )],
429- 'figure.subplot.right' : [0.9 , ValidateInterval (0 , 1 , closedmin = False , closedmax = False )],
430- 'figure.subplot.bottom' : [0.1 , ValidateInterval (0 , 1 , closedmin = False , closedmax = False )],
431- 'figure.subplot.top' : [0.9 , ValidateInterval (0 , 1 , closedmin = False , closedmax = False )],
432- 'figure.subplot.wspace' : [0.2 , ValidateInterval (0 , 1 , closedmin = False , closedmax = True )],
433- 'figure.subplot.hspace' : [0.2 , ValidateInterval (0 , 1 , closedmin = False , closedmax = True )],
428+ 'figure.subplot.left' : [0.125 , ValidateInterval (0 , 1 , closedmin = True , closedmax = True )],
429+ 'figure.subplot.right' : [0.9 , ValidateInterval (0 , 1 , closedmin = True , closedmax = True )],
430+ 'figure.subplot.bottom' : [0.1 , ValidateInterval (0 , 1 , closedmin = True , closedmax = True )],
431+ 'figure.subplot.top' : [0.9 , ValidateInterval (0 , 1 , closedmin = True , closedmax = True )],
432+ 'figure.subplot.wspace' : [0.2 , ValidateInterval (0 , 1 , closedmin = True , closedmax = False )],
433+ 'figure.subplot.hspace' : [0.2 , ValidateInterval (0 , 1 , closedmin = True , closedmax = False )],
434434
435435 'figure.autolayout' : [False , validate_bool ],
436436
0 commit comments