From 9f065af465e75b09e1f1460d053bf6a6b0064769 Mon Sep 17 00:00:00 2001 From: Sebastien Besson Date: Fri, 14 Jan 2022 14:57:59 +0000 Subject: [PATCH] Fix typo --- ome_zarr/writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ome_zarr/writer.py b/ome_zarr/writer.py index 87f1ea58..b7786802 100644 --- a/ome_zarr/writer.py +++ b/ome_zarr/writer.py @@ -139,7 +139,7 @@ def _validate_plate_wells( if any(e not in VALID_KEYS for e in well.keys()): LOGGER.debug("f{well} contains unspecified keys") if "path" not in well: - raise ValueError(f"{well} must contain an path key") + raise ValueError(f"{well} must contain a path key") if not isinstance(well["path"], str): raise ValueError(f"{well} path must be of str type") validated_wells.append(well)