From ea57377ddf1aa9c028c9ff665064d3d7865e3abb Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 1 May 2019 10:13:57 -0400 Subject: [PATCH] correct method docs (#55961) --- lib/ansible/playbook/attribute.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/playbook/attribute.py b/lib/ansible/playbook/attribute.py index 20370b9826e..50047c47211 100644 --- a/lib/ansible/playbook/attribute.py +++ b/lib/ansible/playbook/attribute.py @@ -52,7 +52,8 @@ class Attribute: :kwarg isa: The type of the attribute. Allowable values are a string representation of any yaml basic datatype, python class, or percent. (Enforced at post-validation time). - :kwarg private: (not used) + :kwarg private: Hides the attribute from being documented. + TODO: it should also should prevent it from being user settable :kwarg default: Default value if unspecified in the YAML document. :kwarg required: Whether or not the YAML document must contain this field. If the attribute is None when post-validated, an error will be raised.