Skip to content

Commit 319cbe9

Browse files
committed
🏷️ Add type-hint to ZebraDataset cache
1 parent 6344289 commit 319cbe9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ice_station_zebra/data/lightning/zebra_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(
2727
self.dataset = open_dataset(input_files, start=start, end=end)
2828
self.dataset._name = name
2929
self.chw = (self.space.channels, *self.space.shape)
30-
self._cache = LRUCache(maxsize=128)
30+
self._cache: LRUCache = LRUCache(maxsize=128)
3131

3232
@property
3333
def end_date(self) -> np.datetime64:

0 commit comments

Comments
 (0)