We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f6a34 commit 18a39fbCopy full SHA for 18a39fb
1 file changed
nt2/plotters/movie.py
@@ -1,4 +1,4 @@
1
-from typing import Any, Optional
+from typing import Any, Optional, Dict
2
from nt2.plotters.export import (
3
makeFramesAndMovie,
4
)
@@ -21,8 +21,8 @@ def __init__(self, xarray_obj: xr.DataArray) -> None:
21
def plot(
22
self,
23
name: str,
24
- movie_kwargs: dict[str, Any] = {},
25
- fig_kwargs: dict[str, Any] = {},
+ movie_kwargs: Dict[str, Any] = {},
+ fig_kwargs: Dict[str, Any] = {},
26
aspect_equal: bool = False,
27
**kwargs: Any,
28
) -> bool:
0 commit comments