Skip to content

Commit 632955c

Browse files
🐛 Add QOI To FIXED_LEVEL_CODECS (#129)
* 🐛 Add QOI To FIXED_LEVEL_CODECS * 🤖 pre-commit auto fixes [...] --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent a12ea31 commit 632955c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wsic/enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def from_tiff(cls, compression: int) -> "Codec":
203203
Codec.LZW,
204204
)
205205

206-
FIXED_LEVEL_CODECS = (Codec.LZ4, Codec.LZW, Codec.ZSTD)
206+
FIXED_LEVEL_CODECS = (Codec.LZ4, Codec.LZW, Codec.ZSTD, Codec.QOI)
207207

208208

209209
class ColorSpace(str, Enum):

0 commit comments

Comments
 (0)