From 0b72fc300e4c6e46812fa7bd0c57cdf9c97917b2 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Fri, 8 Nov 2024 11:56:54 -0800 Subject: [PATCH] Update src/hdmf_zarr/backend.py --- src/hdmf_zarr/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdmf_zarr/backend.py b/src/hdmf_zarr/backend.py index aa2fb3d8..1eec3d36 100644 --- a/src/hdmf_zarr/backend.py +++ b/src/hdmf_zarr/backend.py @@ -182,7 +182,7 @@ def mode(self): def open(self): """Open the Zarr file""" if self.__file is None: - # Allow overwriting an exist file (e.g., and HDF5 file). Zarr will normally fail if the + # Allow overwriting an existing file (e.g., an HDF5 file). Zarr will normally fail if the # existing object at the path is a file. So if we are in `w` mode we need to delete the file first if self.mode == 'w' and self.__force_overwrite: if isinstance(self.path, (str, Path)) and os.path.exists(self.path):