Skip to content

Commit 661f771

Browse files
committed
Add explicit WasmCodecMeta.__init__ method for strict mkdocs
1 parent 086fe51 commit 661f771

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

py/numcodecs-wasm/py/numcodecs_wasm/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ class WasmCodecMeta(type):
3838
Bytes of the WebAssembly component, from which the class is created.
3939
"""
4040

41+
def __init__(self, clsname, bases, attrs, wasm: bytes):
42+
pass
43+
4144
def __new__(cls, clsname, bases, attrs, wasm: bytes):
4245
assert len(bases) == 0
4346
assert sorted(attrs.keys()) == ["__module__", "__qualname__"]

0 commit comments

Comments
 (0)