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 3273e2b commit 2736b51Copy full SHA for 2736b51
numcodecs/errors.py
@@ -2,6 +2,7 @@
2
This module defines custom exceptions that are raised in the `numcodecs` codebase.
3
"""
4
5
+
6
class UnknownCodecError(Exception):
7
8
An exception that is raised when trying to receive a codec that has not been registered.
@@ -14,4 +15,4 @@ class UnknownCodecError(Exception):
14
15
16
def __init__(self, codec_id: str):
17
self.codec_id = codec_id
- super().__init__(f"codec not available: '{codec_id}'")
18
+ super().__init__(f"codec not available: '{codec_id}'")
0 commit comments