Skip to content

Commit

Permalink
Merge pull request #47 from martinRenou/fix_read_only
Browse files Browse the repository at this point in the history
Fix read_only
  • Loading branch information
martinRenou committed Feb 27, 2019
2 parents 36f1fff + d879a3e commit 28673e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipysheet/easy.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def cell(row, column, value=0., type=None, color=None, background_color=None,
style['fontWeight'] = font_weight
c = Cell(value=value, row_start=row, column_start=column, row_end=row, column_end=column,
squeeze_row=True, squeeze_column=True, type=type, style=style, choice=choice,
read_only=False, numeric_format=numeric_format, date_format=date_format,
read_only=read_only, numeric_format=numeric_format, date_format=date_format,
renderer=renderer, **kwargs)
if _hold_cells:
_cells += (c,)
Expand Down

0 comments on commit 28673e8

Please sign in to comment.