Skip to content

Commit b82ccd9

Browse files
committed
Fix row/column unused arguments
1 parent e7aec62 commit b82ccd9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ipysheet/easy.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def row(row, value, column_start=0, column_end=None, type=None, color=None, back
179179
return cell_range(value, column_start=column_start, column_end=column_end, row_start=row, row_end=row,
180180
squeeze_row=True, squeeze_column=False,
181181
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)
183184

184185

185186
@doc_subst(_common_doc)
@@ -206,7 +207,7 @@ def column(column, value, row_start=0, row_end=None, type=None, color=None, back
206207
>>> column(1, [True, False, True], row_start=2) # The Cell type will be 'checkbox'
207208
"""
208209
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,
210211
read_only=read_only, numeric_format=numeric_format, date_format=date_format, renderer=renderer,
211212
color=color, background_color=background_color, type=type,
212213
font_style=font_style, font_weight=font_weight, **kwargs)

0 commit comments

Comments
 (0)