Skip to content

Commit 62a9f99

Browse files
committed
Fix "Optional"
1 parent fc1cc44 commit 62a9f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mkdocstrings_handlers/vba/types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class VbaArgumentInfo:
2121
def render(self):
2222
parts = []
2323
if self.optional:
24-
parts.append(self.optional)
24+
parts.append("Optional")
2525
if self.modifier:
2626
parts.append(self.modifier)
2727
parts.append(self.name)

0 commit comments

Comments
 (0)