Skip to content

Commit

Permalink
Add LZO to __init__.py (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schamper authored Oct 26, 2023
1 parent 6704c0d commit aff247f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions dissect/util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
from dissect.util.compression import lz4, lznt1, lzxpress, lzxpress_huffman, sevenbit
from dissect.util.compression import (
lz4,
lznt1,
lzo,
lzxpress,
lzxpress_huffman,
sevenbit,
)

__all__ = [
"lz4",
"lznt1",
"lzxpress",
"lzo",
"lzxpress_huffman",
"lzxpress",
"sevenbit",
]

0 comments on commit aff247f

Please sign in to comment.