From 022b54dbde33aa798035340524d9513fc17c4d1e Mon Sep 17 00:00:00 2001 From: anguswg-ucsb Date: Tue, 17 Oct 2023 14:48:56 -0700 Subject: [PATCH] build and push new version to PyPI --- climatePy/_viz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/climatePy/_viz.py b/climatePy/_viz.py index 1750b97..ee3c28b 100644 --- a/climatePy/_viz.py +++ b/climatePy/_viz.py @@ -58,7 +58,7 @@ def animiation_raster(data, outfile, colors = None): (str or List[str]): A single string indicating where filepath the GIF was saved to or a List of output file paths indicating where the GIF for each one of the dictionary keys was saved to """ - + # if data is a DataArray, make the gif and return the file path name if isinstance(data, (xr.core.dataarray.DataArray, xr.core.dataarray.DataArray)): animiation_xarray(data = data, outfile = outfile, colors = colors)