mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 14:54:24 -04:00
Merge branch 'parserinterfaces_2' of github.com:certbot/certbot into parserinterfaces_2
This commit is contained in:
commit
b0b7aa2e9b
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue