fix failures

This commit is contained in:
senstella
2026-01-18 03:29:42 +09:00
parent ca85a52839
commit 6560ac93f1
6 changed files with 243 additions and 65 deletions

View File

@@ -73,7 +73,7 @@ class ProtoReader:
end = self._pos + length
if end > len(self._data):
raise ProtoError("unexpected EOF while reading length-delimited field")
data = self._data[self._pos:end]
data = self._data[self._pos : end]
self._pos = end
return data