From ca69070b77253dc656420599e9f5be91487d02ab Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Mon, 29 Apr 2024 10:24:41 +1000 Subject: [PATCH] Lintage. --- integration_tests/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration_tests/utils.py b/integration_tests/utils.py index 145d6e33..9b531279 100644 --- a/integration_tests/utils.py +++ b/integration_tests/utils.py @@ -304,7 +304,8 @@ def wcs1_args( crs_extent = extent.to_crs(crs) crs_bbox = crs_extent.boundingbox return { - "bbox": f"{min(crs_bbox.left,crs_bbox.right)},{min(crs_bbox.top,crs_bbox.bottom)},{max(crs_bbox.left,crs_bbox.right)},{max(crs_bbox.top,crs_bbox.bottom)}", + "bbox": f"{min(crs_bbox.left, crs_bbox.right)},{min(crs_bbox.top, crs_bbox.bottom)}," + f"{max(crs_bbox.left, crs_bbox.right)},{max(crs_bbox.top, crs_bbox.bottom)}", "times": ",".join(time_strs), }