Skip to content

Commit 4bcf2cf

Browse files
committed
added valid param for column_width
1 parent 1c9405d commit 4bcf2cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ def make_subplots(rows=1, cols=1,
807807

808808
# Throw exception if non-valid kwarg is sent
809809
VALID_KWARGS = ['horizontal_spacing', 'vertical_spacing',
810-
'specs', 'insets', 'subplot_titles']
810+
'specs', 'insets', 'subplot_titles', 'column_width']
811811
for key in kwargs.keys():
812812
if key not in VALID_KWARGS:
813813
raise Exception("Invalid keyword argument: '{0}'".format(key))

0 commit comments

Comments
 (0)