@@ -179,7 +179,8 @@ def row(row, value, column_start=0, column_end=None, type=None, color=None, back
179
179
return cell_range (value , column_start = column_start , column_end = column_end , row_start = row , row_end = row ,
180
180
squeeze_row = True , squeeze_column = False ,
181
181
color = color , background_color = background_color ,
182
- font_style = font_style , font_weight = font_weight , style = style , type = type , ** kwargs )
182
+ font_style = font_style , font_weight = font_weight , style = style , type = type , choice = choice ,
183
+ read_only = read_only , numeric_format = numeric_format , date_format = date_format , renderer = renderer , ** kwargs )
183
184
184
185
185
186
@doc_subst (_common_doc )
@@ -206,7 +207,7 @@ def column(column, value, row_start=0, row_end=None, type=None, color=None, back
206
207
>>> column(1, [True, False, True], row_start=2) # The Cell type will be 'checkbox'
207
208
"""
208
209
return cell_range (value , column_start = column , column_end = column , row_start = row_start , row_end = row_end ,
209
- squeeze_row = False , squeeze_column = True , style = style ,
210
+ squeeze_row = False , squeeze_column = True , style = style , choice = choice ,
210
211
read_only = read_only , numeric_format = numeric_format , date_format = date_format , renderer = renderer ,
211
212
color = color , background_color = background_color , type = type ,
212
213
font_style = font_style , font_weight = font_weight , ** kwargs )
0 commit comments