Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions cf/data/array/umarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def __init__(
mask=True,
unpack=True,
attributes=None,
storage_protocol=None,
storage_options=None,
source=None,
copy=True,
Expand Down Expand Up @@ -71,6 +72,14 @@ def __init__(

.. versionadded:: 3.16.3

{{init storage_protocol: `None` or `str`, optional}}

.. versionadded:: NEXTVERSION

{{init storage_options: `dict` or `None`, optional}}

.. versionadded:: NEXTVERSION

{{init source: optional}}

{{init copy: `bool`, optional}}
Expand Down Expand Up @@ -108,6 +117,7 @@ def __init__(
mask=mask,
unpack=unpack,
attributes=attributes,
storage_protocol=storage_protocol,
storage_options=storage_options,
source=source,
copy=copy,
Expand Down
2 changes: 2 additions & 0 deletions cf/read_write/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,8 @@ def _read(self, dataset):
"dataset_type",
"unpack",
"verbose",
"filesystem",
"storage_options",
)
}
um_kwargs["set_standard_name"] = False
Expand Down
Loading
Loading