Skip to content

Commit

Permalink
Merge pull request #268 from DimitriPapadopoulos/PTC-W0039
Browse files Browse the repository at this point in the history
Unnecessary `None` provided as default
  • Loading branch information
FrancescAlted authored Sep 26, 2024
2 parents 1a71987 + 6be1a48 commit 33ff8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blosc2/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __init__(self, src: ProxySource or ProxyNDSource, urlpath: str = None, **kwa
)
self._cache.fill_special(self.src.nbytes // self.src.typesize, blosc2.SpecialValue.UNINIT)
self._schunk_cache = getattr(self._cache, "schunk", self._cache)
vlmeta = kwargs.get("vlmeta", None)
vlmeta = kwargs.get("vlmeta")
if vlmeta:
for key in vlmeta:
self._schunk_cache.vlmeta[key] = vlmeta[key]
Expand Down

0 comments on commit 33ff8db

Please sign in to comment.