Skip to content

Commit b4f899b

Browse files
authored
add anon=True for virtual store example (#1190)
I just ran the example with fsspec==2025.5.1 and got an error. Providing `anon=True` fixed it for me.
1 parent 849f5a8 commit b4f899b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/virtual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ First, we need to find all of the files we are interested in, we will do this wi
2727
```python
2828
import fsspec
2929

30-
fs = fsspec.filesystem('s3')
30+
fs = fsspec.filesystem('s3', anon=True)
3131

3232
oisst_files = fs.glob('s3://noaa-cdr-sea-surface-temp-optimum-interpolation-pds/data/v2.1/avhrr/202408/oisst-avhrr-v02r01.*.nc')
3333

0 commit comments

Comments
 (0)