From 235415b5572c2539aee9ccc5b109141871a76120 Mon Sep 17 00:00:00 2001 From: Max Jones <14077947+maxrjones@users.noreply.github.com> Date: Sat, 19 Jul 2025 08:42:39 -0400 Subject: [PATCH] Fix type in netCDF3.py --- kerchunk/netCDF3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kerchunk/netCDF3.py b/kerchunk/netCDF3.py index f7a47176..c38d7fa5 100644 --- a/kerchunk/netCDF3.py +++ b/kerchunk/netCDF3.py @@ -216,7 +216,7 @@ def translate(self): ] arr.attrs.update( { - k: v.decode(erros="ignore") if isinstance(v, bytes) else str(v) + k: v.decode(errors="ignore") if isinstance(v, bytes) else str(v) for k, v in var._attributes.items() if k not in ["_FillValue", "missing_value"] }