From 345aa92ce1297ceb3d5fe3b7af87b7c13705ce88 Mon Sep 17 00:00:00 2001 From: Loic Huder Date: Tue, 23 Apr 2024 16:37:05 +0200 Subject: [PATCH] Add missing arg in docstring of open_item --- src/silx/io/h5py_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/silx/io/h5py_utils.py b/src/silx/io/h5py_utils.py index 478f72c9f5..84a29f965c 100644 --- a/src/silx/io/h5py_utils.py +++ b/src/silx/io/h5py_utils.py @@ -202,6 +202,7 @@ def open_item(filename, name, retry_invalid=False, validate=None, **open_options r"""Yield an HDF5 dataset or group (retry until it can be instantiated). :param str filename: + :param str name: HDF5 path of the item :param bool retry_invalid: retry when item is missing or not valid :param callable or None validate: :param \**open_options: see `File.__init__`