Add more specific description to param_spec

Change-Id: I312f1f4b26de31b7a0b6040e371e2e02760728d9
This commit is contained in:
Andras Kovi 2020-09-04 07:35:10 +02:00
parent f818f1f02c
commit 245c1272f2
1 changed files with 4 additions and 2 deletions

View File

@ -169,8 +169,10 @@ class ActionDescriptor(abc.ABC):
Each parameter name can be either just a name or a string Each parameter name can be either just a name or a string
"param=val" where "param" is the name of the parameter "param=val" where "param" is the name of the parameter
and "val" its default value. All names and values in the and "val" its default value. The values are only indications
string must be JSON-compatible. for the user and not used in the action instantiation process.
The string is split along the commas and then the parts along the
equal signs. Escaping is not possible.
""" """
pass pass