We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7328205 commit 61a1d01Copy full SHA for 61a1d01
1 file changed
src/zarr/core/array.py
@@ -159,19 +159,9 @@ class DefaultFillValue:
159
- fill_value = None: fill_value saved as null
160
161
This allows backwards compatibility with zarr format 2.
162
-
163
- This is implemented as a singleton.
164
"""
165
166
- _instance = None
167
168
- def __new__(cls) -> Self:
169
- if cls._instance is None:
170
- cls._instance = super().__new__(cls)
171
- return cls._instance
172
173
174
-# Create the singleton instance
175
DEFAULT_FILL_VALUE = DefaultFillValue()
176
177
0 commit comments