Fix desc_sig_space

This commit is contained in:
Jakob Lykke Andersen 2021-03-20 19:43:41 +01:00
parent 87414faa92
commit 3fdc9bcf9f

View File

@ -294,8 +294,9 @@ class desc_sig_space(desc_sig_element):
"""Node for a space in a signature."""
classes = ["w"]
def __init__(self) -> None:
super().__init__(' ', ' ')
def __init__(self, rawsource: str = '', text: str = ' ',
*children: Element, **attributes: Any) -> None:
super().__init__(rawsource, text, *children, **attributes)
class desc_sig_name(desc_sig_element):