From 84c439ebbb51766456902c53a51cd208fd529ba2 Mon Sep 17 00:00:00 2001 From: J3y0 <91211461+J3y0@users.noreply.github.com> Date: Thu, 9 Oct 2025 19:19:23 +0200 Subject: [PATCH] fix: message typo --- marshalparser/marshalparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marshalparser/marshalparser.py b/marshalparser/marshalparser.py index 5df560e..153ffe0 100644 --- a/marshalparser/marshalparser.py +++ b/marshalparser/marshalparser.py @@ -113,7 +113,7 @@ def read_object(self) -> Any: type = types[bytestring] except KeyError: print( - f"Cannot read/parse byte {b!r} {bytestring!r} on possition {i}" + f"Cannot read/parse byte {b!r} {bytestring!r} on position {i}" ) print("Might be error or unsupported TYPE") print(self.output)