From 84cafacf43178e80ef88903fbfbb28db35e71d41 Mon Sep 17 00:00:00 2001 From: Massimo Santini Date: Tue, 9 Apr 2024 11:24:24 +0200 Subject: [PATCH] Fixed css --- src/liblet/display.py | 2 +- src/liblet/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liblet/display.py b/src/liblet/display.py index 0df0c05..a6ab62c 100644 --- a/src/liblet/display.py +++ b/src/liblet/display.py @@ -576,7 +576,7 @@ def animate_derivation(d, height='300px'): def __bordered_table__(content): # noqa: N807 - return HTML(f'' + content + '
') + return HTML(f'' + content + '
') def resized_svg_repr(obj, width=800, height=600): diff --git a/src/liblet/utils.py b/src/liblet/utils.py index 506aef7..7a8e69a 100644 --- a/src/liblet/utils.py +++ b/src/liblet/utils.py @@ -256,7 +256,7 @@ def restrict_to(self, rows=None, cols=None): def _repr_html_(self): def _table(content): return ( - f'' + f'
' + content + '
' )