Skip to content

Commit f2bb95c

Browse files
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.
1 parent 39f8697 commit f2bb95c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiledb/array_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def _repr_html_(self):
499499
output.write(f"<tr><td>{self.sparse}</td></tr>")
500500

501501
if self.sparse:
502-
output.write("<tr><th>Allows DuplicatesK/th></tr>")
502+
output.write("<tr><th>Allows Duplicates</th></tr>")
503503
output.write(f"<tr><td>{self.allows_duplicates}</td></tr>")
504504

505505
output.write("</table>")

0 commit comments

Comments
 (0)