Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 6, 2024
1 parent 928b1e2 commit 35d814c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erddapy/core/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def to_pandas(
data = urlopen(url, requests_kwargs or {})
try:
return pd.read_csv(data, **(pandas_kwargs or {}))
except Exception as e: # noqa: BLE001
except Exception as e:
msg = f"Could not read url {url} with Pandas.read_csv."
raise ValueError(msg) from e

Expand Down

0 comments on commit 35d814c

Please sign in to comment.