File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -2025,10 +2025,6 @@ def make_iterable(x):
2025
2025
bottom = [0 ]
2026
2026
2027
2027
nbars = len (left )
2028
- if len (height ) == 1 :
2029
- height *= nbars
2030
- if len (width ) == 1 :
2031
- width *= nbars
2032
2028
if len (bottom ) == 1 :
2033
2029
bottom *= nbars
2034
2030
@@ -2047,16 +2043,16 @@ def make_iterable(x):
2047
2043
nbars = len (bottom )
2048
2044
if len (left ) == 1 :
2049
2045
left *= nbars
2050
- if len (height ) == 1 :
2051
- height *= nbars
2052
- if len (width ) == 1 :
2053
- width *= nbars
2054
2046
2055
2047
tick_label_axis = self .yaxis
2056
2048
tick_label_position = bottom
2057
2049
else :
2058
2050
raise ValueError ('invalid orientation: %s' % orientation )
2059
2051
2052
+ if len (height ) == 1 :
2053
+ height *= nbars
2054
+ if len (width ) == 1 :
2055
+ width *= nbars
2060
2056
if len (linewidth ) < nbars :
2061
2057
linewidth *= nbars
2062
2058
You can’t perform that action at this time.
0 commit comments