Skip to content

Commit 308e28e

Browse files
authored
Merge pull request #5 from AutoActuary/remove-replace-colon
don't replace `:` with `;`
2 parents 83d2920 + 9242215 commit 308e28e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

mkdocstrings_handlers/vba/util.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,6 @@ def find_procedures(code: str) -> Generator[VbaProcedureInfo, None, None]:
159159

160160
docstring_value = "\n".join(uncomment_lines(docstring_lines))
161161

162-
# FIXME: https://github.com/mkdocstrings/griffe/issues/38
163-
docstring_value = docstring_value.replace(":", ";")
164-
165162
# Yield it and start over.
166163
yield VbaProcedureInfo(
167164
signature=procedure["signature"],

0 commit comments

Comments
 (0)