From 78577dc15f6791e17f18706c5a6bb6ba7a302b77 Mon Sep 17 00:00:00 2001 From: Kirill Kouzoubov Date: Wed, 19 Jun 2024 12:16:23 +1000 Subject: [PATCH] fix: remove no longer relevant MaybeNodata type now that `Nodata` is allowed to be `None`, 'MaybeNodata' is now confusing, removing it. Let's assume that it never was a part of the `odc.geo` API. --- odc/geo/types.py | 1 - 1 file changed, 1 deletion(-) diff --git a/odc/geo/types.py b/odc/geo/types.py index 65e7212..c13c161 100644 --- a/odc/geo/types.py +++ b/odc/geo/types.py @@ -23,7 +23,6 @@ MaybeFloat = Optional[float] FillValue = Union[float, int] Nodata = Union[float, int, None] -MaybeNodata = Union[float, int, str, None] SomeNodata = Union[float, int, str, None, Literal["auto"]] T = TypeVar("T") T1 = TypeVar("T1")