Skip to content

Commit

Permalink
Add LZO to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Schamper committed Oct 25, 2023
1 parent 6704c0d commit 71c3f33
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 71c3f33

Please sign in to comment.