Choices should be a list, not a string
This commit is contained in:
parent
a103f81513
commit
3d2c5f3016
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ option_schema = Schema(
|
|||
{
|
||||
Required('description'): Any(basestring, [basestring]),
|
||||
'required': bool,
|
||||
'choices': Any(list, basestring),
|
||||
'choices': list,
|
||||
'aliases': list,
|
||||
'version_added': Any(basestring, float)
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue