diff --git a/cf/data/data.py b/cf/data/data.py index 9c9b3e33d3..6a568ba696 100644 --- a/cf/data/data.py +++ b/cf/data/data.py @@ -4240,6 +4240,17 @@ def __query_wo__(self, value): """TODO.""" return (self < value[0]) | (self > value[1]) + def _parse_indices(self, *args, **kwargs): + """'cf.Data._parse_indices' is not available. + + Use function `cf.parse_indices` instead. + + """ + raise NotImplementedError( + "'cf.Data._parse_indices' is not available. " + "Use function 'cf.parse_indices' instead." + ) + def _set_subspace(self, *args, **kwargs): """'cf.Data._set_subspace' is unavailable.""" raise NotImplementedError("'cf.Data._set_subspace' is unavailable.")