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

Otherwise the question "array of what?" is raised.
This commit is contained in:
Travis Ralston 2018-07-03 15:50:01 -06:00
parent d279fdafa6
commit cbbdcbcf01

View file

@ -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 += (