Skip to content

Commit 930c4d4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent bad910e commit 930c4d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compression/ppm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def compress(self, data: str) -> list[float]:
4444
self.update_model(context, symbol)
4545
# Encode the symbol based on the current context
4646
compressed_output.append(self.encode_symbol(context, symbol))
47-
# Update the context by appending the symbol,
47+
# Update the context by appending the symbol,
4848
# keeping it within the specified order
4949
context = (context + symbol)[-self.order :] # Keep the context within order
5050

0 commit comments

Comments
 (0)