From 1c28a0cdc80bbfc9eef79fe1085576e629fa6638 Mon Sep 17 00:00:00 2001 From: duck <117786154+icduck@users.noreply.github.com> Date: Tue, 31 Oct 2023 02:50:56 -0500 Subject: [PATCH] Fixed Grid Height Error --- ipyaggrid/builder_params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipyaggrid/builder_params.py b/ipyaggrid/builder_params.py index c8f3d29..d156e32 100644 --- a/ipyaggrid/builder_params.py +++ b/ipyaggrid/builder_params.py @@ -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',