We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d408b9d commit b4a114dCopy full SHA for b4a114d
1 file changed
src/zarr/core/common.py
@@ -50,8 +50,19 @@
50
51
52
class NamedConfig(TypedDict, Generic[TName, TConfig]):
53
+ """
54
+ A typed dictionary representing an object with a name and configuration, where the configuration
55
+ is a mapping of string keys to values, e.g. another typed dictionary or a JSON object.
56
+
57
+ This class is generic with two type parameters: the type of the name (``TName``) and the type of
58
+ the configuration (``TConfig``).
59
60
61
name: ReadOnly[TName]
62
+ """The name of the object."""
63
64
configuration: ReadOnly[TConfig]
65
+ """The configuration of the object."""
66
67
68
def product(tup: ChunkCoords) -> int:
0 commit comments