mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Corrects method name (#25568)
The method name was missing a 'd'. The method was not used anywhere however, so no other code needs to be changed. Neither 'has_chilren' nor 'has_children' are used in the codebase.
This commit is contained in:
parent
4ffc4b6748
commit
9c849d5c94
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class ConfigLine(object):
|
||||||
return '\n'.join(config)
|
return '\n'.join(config)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def has_chilren(self):
|
def has_children(self):
|
||||||
return len(self._children) > 0
|
return len(self._children) > 0
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in a new issue