Skip to content

Commit 295762d

Browse files
authored
Update tools/schemacode/src/bidsschematools/render/tsv.py
1 parent 6fe582e commit 295762d

File tree

1 file changed

+2
-2
lines changed
  • tools/schemacode/src/bidsschematools/render

1 file changed

+2
-2
lines changed

tools/schemacode/src/bidsschematools/render/tsv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ def fence(
3737
header=None if "noheader" in attrs else "infer",
3838
)
3939
md_table = tabulate(
40-
df,
40+
df, # type: ignore
4141
tablefmt="github",
4242
showindex=linenums,
4343
headers="keys",
4444
numalign="right",
45-
) # type: ignore
45+
)
4646
html = MarkdownIt("commonmark").enable("table").render(md_table)
4747
if "noheader" in attrs:
4848
html = re.sub("<thead>.+</thead>", "", html, flags=re.DOTALL)

0 commit comments

Comments
 (0)