mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Add documentation for children
This commit is contained in:
parent
37885ee6e7
commit
4e78430ef4
1 changed files with 8 additions and 0 deletions
|
|
@ -319,6 +319,14 @@ class BlockNode(DirectiveNode):
|
|||
The applicable parameters are dependent on the underlying configuration language
|
||||
and its grammar.
|
||||
|
||||
BlockNode objects should have the following attributes in addition to
|
||||
the ones described in DirectiveNode:
|
||||
|
||||
# Tuple of direct children of this BlockNode object. The order of children
|
||||
# in this tuple retain the order of elements in the parsed configuration
|
||||
# block.
|
||||
children: Tuple[ParserNode, ...]
|
||||
|
||||
"""
|
||||
|
||||
@abc.abstractmethod
|
||||
|
|
|
|||
Loading…
Reference in a new issue