Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ipyaggrid/builder_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def valid(self):
assert (isinstance(self.obj.width_in, int)
or isinstance(self.obj.width_in, str)), msg

msg = 'height must be an int (number of pixels)'
assert isinstance(self.obj.height_in, int), msg
msg = 'height must be a string'
assert isinstance(self.obj.height_in, str), msg

li_theme = [
'ag-theme-balham',
Expand Down