Skip to content

Commit a38f9cd

Browse files
committed
ci: Ignore unsafe markup warning
1 parent 82c63a2 commit a38f9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkdocstrings_handlers/python/_internal/rendering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def repl(match: Match) -> str:
336336
text = re.sub(r"([\w.]+)", repl, text)
337337
if code:
338338
text = f"<code>{text}</code>"
339-
return Markup(text).format(**variables)
339+
return Markup(text).format(**variables) # noqa: S704
340340

341341

342342
_split_path_re = re.compile(r"([.(]?)([\w]+)(\))?")

0 commit comments

Comments
 (0)