From c798269f4efbf560edead4f64460ae425d8deec6 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 10 Dec 2024 19:34:07 +0100 Subject: [PATCH] fix quotes --- erddapy/core/url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erddapy/core/url.py b/erddapy/core/url.py index e367337..1fd7c40 100644 --- a/erddapy/core/url.py +++ b/erddapy/core/url.py @@ -513,7 +513,7 @@ def get_download_url( # noqa: PLR0913, C901 griddap.append("".join(sub_url)) # We need to remove the last , from the URL - return f"{download_url}?{"".join(griddap)}".strip(",") + return f"{download_url}?{''.join(griddap)}".strip(",") # This is an unconstrained OPeNDAP response b/c # the integer based constrained version is just not worth supporting ;-p