Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Dec 10, 2024
1 parent b75230c commit c798269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erddapy/core/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c798269

Please sign in to comment.