Merge pull request #320 from geopython/bbox-data-types

make bbox inputs floats
This commit is contained in:
Jorge Samuel Mendes de Jesus
2019-12-16 08:56:08 +01:00
committed by GitHub
+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',