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 d82f1cf commit d64b1c1Copy full SHA for d64b1c1
numcodecs/tests/test_registry.py
@@ -34,6 +34,7 @@ def test_all_classes_registered():
34
if (
35
inspect.isclass(obj)
36
and issubclass(obj, numcodecs.abc.Codec)
37
+ and hasattr(obj, 'codec_id')
38
and obj.codec_id not in numcodecs.registry.codec_registry
39
and obj.codec_id is not None # remove `None`
40
)
0 commit comments