From 28f6683eae436b596d080c5f599f47293a62bdbf Mon Sep 17 00:00:00 2001 From: Tom White Date: Thu, 16 Jan 2025 10:41:18 +0000 Subject: [PATCH] Fix mypy --- cubed/icechunk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubed/icechunk.py b/cubed/icechunk.py index 5990eece..b42cda7d 100644 --- a/cubed/icechunk.py +++ b/cubed/icechunk.py @@ -22,7 +22,7 @@ def store_icechunk( ) -> None: if isinstance(sources, CoreArray): sources = [sources] - targets = [targets] + targets = [targets] # type: ignore if any(not isinstance(s, CoreArray) for s in sources): raise ValueError("All sources must be cubed array objects")