Enlist the examples

This commit is contained in:
Travis Ralston 2018-07-24 10:25:24 -06:00
parent 9fa838d3e8
commit acf9632afc

View file

@ -406,7 +406,7 @@ def get_example_for_schema(schema):
items = schema['items'] items = schema['items']
if isinstance(items, list): if isinstance(items, list):
return [get_example_for_schema(i) for i in items] return [get_example_for_schema(i) for i in items]
return get_example_for_schema(items) return [get_example_for_schema(items)]
if proptype == 'integer': if proptype == 'integer':
return 0 return 0