From ab4cd3e03e2d8529aa7cb773cc7619a4c88073a6 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Fri, 13 Dec 2019 16:48:51 -0500 Subject: [PATCH] make bbox inputs floats --- pygeoapi/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygeoapi/api.py b/pygeoapi/api.py index 22f9919..1ccd065 100644 --- a/pygeoapi/api.py +++ b/pygeoapi/api.py @@ -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',