Skip to content

Commit

Permalink
fix: remove no longer relevant MaybeNodata type
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Kirill888 committed Jun 19, 2024
1 parent 7f3ada9 commit 78577dc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion odc/geo/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 78577dc

Please sign in to comment.