Skip to content

Commit 0519342

Browse files
authored
Merge pull request #116 from martinRenou/fix_row_column_parameters
Fix row/column unused arguments
2 parents ddbe74b + b82ccd9 commit 0519342

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
@@ -180,7 +180,8 @@ def row(row, value, column_start=0, column_end=None, type=None, color=None, back
180180
return cell_range(value, column_start=column_start, column_end=column_end, row_start=row, row_end=row,
181181
squeeze_row=True, squeeze_column=False,
182182
color=color, background_color=background_color,
183-
font_style=font_style, font_weight=font_weight, style=style, type=type, **kwargs)
183+
font_style=font_style, font_weight=font_weight, style=style, type=type, choice=choice,
184+
read_only=read_only, numeric_format=numeric_format, date_format=date_format, renderer=renderer, **kwargs)
184185

185186

186187
@doc_subst(_common_doc)
@@ -207,7 +208,7 @@ def column(column, value, row_start=0, row_end=None, type=None, color=None, back
207208
>>> column(1, [True, False, True], row_start=2) # The Cell type will be 'checkbox'
208209
"""
209210
return cell_range(value, column_start=column, column_end=column, row_start=row_start, row_end=row_end,
210-
squeeze_row=False, squeeze_column=True, style=style,
211+
squeeze_row=False, squeeze_column=True, style=style, choice=choice,
211212
read_only=read_only, numeric_format=numeric_format, date_format=date_format, renderer=renderer,
212213
color=color, background_color=background_color, type=type,
213214
font_style=font_style, font_weight=font_weight, **kwargs)

0 commit comments

Comments
 (0)