Skip to content

Commit

Permalink
Merge pull request #55 from kthyng/update_simplecache
Browse files Browse the repository at this point in the history
updated simplecache syntax
  • Loading branch information
kthyng authored Sep 12, 2023
2 parents 97b1825 + bf2bc0f commit 75ff058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intake_erddap/erddap.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def _load(self):
else:
url = e.get_download_url(response=response)

with fsspec.open(f"simplecache::{url}", **self._cache_kwargs) as f:
with fsspec.open(f"simplecache://::{url}", **self._cache_kwargs) as f:
self._dataframe: pd.DataFrame = pd.read_csv(f, **self.open_kwargs)
else:
self._dataframe: pd.DataFrame = e.to_pandas(
Expand Down

0 comments on commit 75ff058

Please sign in to comment.