From dd4ec081390587f8ecc74de036b365e3ad2d42af Mon Sep 17 00:00:00 2001 From: Matthew Plough Date: Thu, 19 Dec 2024 11:28:54 -0500 Subject: [PATCH] Fix _FillValue note --- overview/xarray-in-45-min.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overview/xarray-in-45-min.ipynb b/overview/xarray-in-45-min.ipynb index 36667327..d771a368 100644 --- a/overview/xarray-in-45-min.ipynb +++ b/overview/xarray-in-45-min.ipynb @@ -922,7 +922,7 @@ "metadata": {}, "source": [ "```{note}\n", - "To avoid the `SerializationWarning` you can assign a _FillValue for any NaNs in 'air' array by adding the keyword argument encoding=dict(air={_FillValue=-9999})\n", + "To avoid the `SerializationWarning` you can assign a _FillValue for any NaNs in 'air' array by adding the keyword argument `encoding=dict(air=dict(_FillValue=-9999))`\n", "```" ] },