Skip to content

Commit 33129fc

Browse files
committed
Fix typing compatibility
1 parent 2318f9a commit 33129fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docstring_to_markdown/google.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def as_markdown(self) -> str:
102102

103103
class GoogleDocstring:
104104
def __init__(self, docstring: str) -> None:
105-
self.sections: list[Section] = []
105+
self.sections: List[Section] = []
106106
self.description: str = ""
107107

108108
self._parse(docstring)

0 commit comments

Comments
 (0)