We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe582e commit 295762dCopy full SHA for 295762d
tools/schemacode/src/bidsschematools/render/tsv.py
@@ -37,12 +37,12 @@ def fence(
37
header=None if "noheader" in attrs else "infer",
38
)
39
md_table = tabulate(
40
- df,
+ df, # type: ignore
41
tablefmt="github",
42
showindex=linenums,
43
headers="keys",
44
numalign="right",
45
- ) # type: ignore
+ )
46
html = MarkdownIt("commonmark").enable("table").render(md_table)
47
if "noheader" in attrs:
48
html = re.sub("<thead>.+</thead>", "", html, flags=re.DOTALL)
0 commit comments