Skip to content

Commit 913c3b4

Browse files
committed
Fix type issue and ci
1 parent 30522af commit 913c3b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MLStructFP/db/_db_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def tabulate(self, limit: int = 0, legacy: bool = False,
245245
(f.id, len(f.rect), len(f.slab), f_file)
246246
):
247247
table_data.append(i)
248-
table.append(table_data)
248+
table.append(table_data) # type: ignore
249249
if 0 < limit - 1 <= j:
250250
break
251251
display(HTML(tabulate.tabulate(

0 commit comments

Comments
 (0)