make bbox inputs floats

This commit is contained in:
Tom Kralidis
2019-12-13 16:48:51 -05:00
parent b61404d610
commit ab4cd3e03e
+1 -1
View File
@@ -492,7 +492,7 @@ class API(object):
except AttributeError:
bbox = []
try:
[float(c) for c in bbox]
bbox = [float(c) for c in bbox]
except ValueError:
exception = {
'code': 'InvalidParameterValue',