Skip to content

Commit 3705fa1

Browse files
committed
comment fix
1 parent 10dfdd8 commit 3705fa1

File tree

1 file changed

+1
-2
lines changed
  • examples/custom_output_files

1 file changed

+1
-2
lines changed

examples/custom_output_files/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ def mutate(
9696

9797
@cocoindex.op.function()
9898
def markdown_to_html(text: str) -> str:
99-
# The underlying library lacks precise typing; the return here is known to be str.
100-
return _markdown_it.render(text) # type: ignore[no-any-return]
99+
return _markdown_it.render(text) # type: ignore
101100

102101

103102
@cocoindex.flow_def(name="CustomOutputFiles")

0 commit comments

Comments
 (0)