Skip to content

Commit 18a39fb

Browse files
committed
dict -> Dict for 3.8 support
1 parent 62f6a34 commit 18a39fb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nt2/plotters/movie.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Optional
1+
from typing import Any, Optional, Dict
22
from nt2.plotters.export import (
33
makeFramesAndMovie,
44
)
@@ -21,8 +21,8 @@ def __init__(self, xarray_obj: xr.DataArray) -> None:
2121
def plot(
2222
self,
2323
name: str,
24-
movie_kwargs: dict[str, Any] = {},
25-
fig_kwargs: dict[str, Any] = {},
24+
movie_kwargs: Dict[str, Any] = {},
25+
fig_kwargs: Dict[str, Any] = {},
2626
aspect_equal: bool = False,
2727
**kwargs: Any,
2828
) -> bool:

0 commit comments

Comments
 (0)