From ab50ff342f314a5e748a6dbc9a6def674bc0e921 Mon Sep 17 00:00:00 2001 From: Duncan Macleod Date: Tue, 1 Oct 2024 10:31:25 +0100 Subject: [PATCH] README: fix quote characters that windows doesn't like --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d685506..ccebfa6 100644 --- a/README.md +++ b/README.md @@ -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') ```