Skip to content

Commit 71130f4

Browse files
authored
Fix typo in error message for zarr 3 (#2487)
1 parent 2ead9f0 commit 71130f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arviz/data/inference_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ def to_zarr(self, store=None):
812812
if version.parse(zarr.__version__) >= version.parse("3.0.0.dev0"):
813813
raise ImportError(
814814
"Found zarr>=3, which is not supported by ArviZ. Instead, you can use "
815-
"'dt = InfereceData.to_datatree' followed by 'dt.to_zarr()' "
815+
"'dt = InferenceData.to_datatree' followed by 'dt.to_zarr()' "
816816
"(needs xarray>=2024.11.0)"
817817
)
818818

0 commit comments

Comments
 (0)