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 6bfef85 commit 4fb09a8Copy full SHA for 4fb09a8
1 file changed
data_compression/ppma.py
@@ -30,7 +30,7 @@ class PPMA:
30
Core class for PPM compression algorithm containing compression and decompression.
31
"""
32
33
- def __init__(self, max_order: int = 2, alphabet_size: int = 256):
+ def __init__(self, max_order: int = 2, alphabet_size: int = 256) -> None:
34
self.max_order = max_order
35
self.alphabet_size = alphabet_size
36
self.history = ""
0 commit comments