From f2bb95c6a6d1b21b13bfbeb71a27d8f6804e149b Mon Sep 17 00:00:00 2001 From: Nick Vigilante Date: Thu, 6 Feb 2025 14:28:34 -0500 Subject: [PATCH] Fix bug with printing array schemas to HTML (#2152) I noticed the HTML generated after using the `.schema` property on an open array was incorrect and missing a closing tag. --- tiledb/array_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiledb/array_schema.py b/tiledb/array_schema.py index 16fc9ba56d..d631df9e43 100644 --- a/tiledb/array_schema.py +++ b/tiledb/array_schema.py @@ -499,7 +499,7 @@ def _repr_html_(self): output.write(f"{self.sparse}") if self.sparse: - output.write("Allows DuplicatesK/th>") + output.write("Allows Duplicates") output.write(f"{self.allows_duplicates}") output.write("")