diff options
-rw-r--r-- | ipalib/parameter.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ipalib/parameter.py b/ipalib/parameter.py index 1d629f38..7605339d 100644 --- a/ipalib/parameter.py +++ b/ipalib/parameter.py @@ -122,7 +122,10 @@ class DefaultFrom(ReadOnly): def __call__(self, **kw): """ - If all keys are present, calls the callback; otherwise returns None. + Call the callback if all keys are present. + + If all keys are present, the callback is called and its return value is + returned. If any keys are missing, ``None`` is returned. :param kw: The keyword arguments. """ |