Merge branch 'parserinterfaces_2' of github.com:certbot/certbot into parserinterfaces_2

This commit is contained in:
Joona Hoikkala 2019-08-16 10:49:39 +03:00
commit b0b7aa2e9b
No known key found for this signature in database
GPG key ID: D5AA86BBF9B29A5C

View file

@ -243,11 +243,11 @@ class BlockNode(ParserNode):
name: str
# Tuple of parameters of this ParserNode object, excluding whitespaces.
parameters: Tuple[str]
parameters: Tuple[str, ...]
# Tuple of ParserNode objects that are the children for this node. The order
# of the children is the same s that of the parsed configuration block.
children: Tuple[ParserNode]
children: Tuple[ParserNode, ...]
"""
@abc.abstractmethod