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 169517e commit 7523fc6Copy full SHA for 7523fc6
numcodecs/pcodec.py
@@ -1,7 +1,6 @@
1
from typing import Literal, Optional
2
3
-import numcodecs
4
-import numcodecs.abc
+from numcodecs.abc import Codec
5
from numcodecs.compat import ensure_contiguous_ndarray
6
7
try:
@@ -13,7 +12,7 @@
13
12
DEFAULT_MAX_PAGE_N = 262144
14
15
16
-class PCodec(numcodecs.abc.Codec):
+class PCodec(Codec):
17
"""
18
PCodec (or pco, pronounced "pico") losslessly compresses and decompresses
19
numerical sequences with high compression ratio and fast speed.
0 commit comments