|
class Meta(Mapping): |
|
""" |
|
Class providing access to fixed-length metadata on an :ref:`SChunk`. |
|
It is available via the `.meta` property of an :ref:`SChunk`. |
|
""" |
|
|
|
def get(self, key: str, default: Any = None) -> Any: |
|
"""Return the value for `key` if `key` is in the dictionary, else return `default`. |
|
If `default` is not given, it defaults to ``None``.""" |
|
return self.get(key, default) |
Calling
get infinitely recurses. Caused by
213e730
python-blosc2/src/blosc2/schunk.py
Lines 148 to 157 in a0ab6a7
Calling
getinfinitely recurses. Caused by 213e730