Skip to content

Commit

Permalink
README: fix quote characters that windows doesn't like
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmmacleod authored and turetske committed Oct 25, 2024
1 parent fc90bf1 commit ab50ff3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ Sometimes various systems that interact with an fsspec want a key-value mapper r
```python
from pelicanfs.core import PelicanFileSystem, PelicanMap

pelfs = PelicanFileSystem(some-director-url)
file1 = PelicanMap(/namespace/file/1, pelfs=pelfs)
file2 = PelicanMap(/namespace/file/2, pelfs=pelfs)
pelfs = PelicanFileSystem("some-director-url")
file1 = PelicanMap("/namespace/file/1", pelfs=pelfs)
file2 = PelicanMap("/namespace/file/2", pelfs=pelfs)
ds = xarray.open_mfdataset([file1,file2], engine='zarr')
```

Expand Down

0 comments on commit ab50ff3

Please sign in to comment.