File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2025,10 +2025,6 @@ def make_iterable(x):
20252025 bottom = [0 ]
20262026
20272027 nbars = len (left )
2028- if len (height ) == 1 :
2029- height *= nbars
2030- if len (width ) == 1 :
2031- width *= nbars
20322028 if len (bottom ) == 1 :
20332029 bottom *= nbars
20342030
@@ -2047,16 +2043,16 @@ def make_iterable(x):
20472043 nbars = len (bottom )
20482044 if len (left ) == 1 :
20492045 left *= nbars
2050- if len (height ) == 1 :
2051- height *= nbars
2052- if len (width ) == 1 :
2053- width *= nbars
20542046
20552047 tick_label_axis = self .yaxis
20562048 tick_label_position = bottom
20572049 else :
20582050 raise ValueError ('invalid orientation: %s' % orientation )
20592051
2052+ if len (height ) == 1 :
2053+ height *= nbars
2054+ if len (width ) == 1 :
2055+ width *= nbars
20602056 if len (linewidth ) < nbars :
20612057 linewidth *= nbars
20622058
You can’t perform that action at this time.
0 commit comments