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 29995e3 commit 886f6e0Copy full SHA for 886f6e0
numcodecs/tests/test_registry.py
@@ -26,7 +26,7 @@ def test_all_classes_registered():
26
27
see #346 for more info
28
"""
29
- missing = set(
+ missing = {
30
obj.codec_id
31
for _, submod in inspect.getmembers(numcodecs, inspect.ismodule)
32
for _, obj in inspect.getmembers(submod)
@@ -36,7 +36,7 @@ def test_all_classes_registered():
36
and obj.codec_id not in numcodecs.registry.codec_registry
37
and obj.codec_id is not None # remove `None`
38
)
39
- )
+ }
40
41
if missing:
42
raise Exception(f"these codecs are missing: {missing}") # pragma: no cover
0 commit comments