From a8bd9a7756fb1582c67b46c678989167562f618b Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Sat, 20 Aug 2022 17:18:49 -0700 Subject: [PATCH] Fix typo --- blosc2/blosc2_ext.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blosc2/blosc2_ext.pyx b/blosc2/blosc2_ext.pyx index cd51926f..ede9ea77 100644 --- a/blosc2/blosc2_ext.pyx +++ b/blosc2/blosc2_ext.pyx @@ -686,7 +686,7 @@ cdef class SChunk: def __init__(self, schunk=None, chunksize=8*10**6, data=None, mode="a", **kwargs): # hold on to a bytestring of urlpath for the lifetime of the instance - # because it's value is referenced via a C-pointer + # because its value is referenced via a C-pointer urlpath = kwargs.get("urlpath", None) if urlpath is not None: self._urlpath = urlpath.encode() if isinstance(urlpath, str) else urlpath