mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
@@ -81,7 +81,7 @@ class ConfigLine(object):
|
||||
return '\n'.join(config)
|
||||
|
||||
@property
|
||||
def has_chilren(self):
|
||||
def has_children(self):
|
||||
return len(self._children) > 0
|
||||
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user