Show arrays in the query string as "[type]" rather than "array"

Otherwise the question "array of what?" is raised.
pull/1364/head
Travis Ralston 6 years ago
parent d279fdafa6
commit cbbdcbcf01

@ -502,6 +502,11 @@ class MatrixUnits(Units):
# assign value expected for this param
val_type = param.get("type") # integer/string
if val_type == "array":
items = param.get("items")
if items:
val_type = "[%s]" % items.get("type")
if param.get("enum"):
val_type = "enum"
desc += (

Loading…
Cancel
Save