Fix some typing issues in tests

This commit is contained in:
Lonami Exo
2023-08-31 10:54:50 +02:00
parent 53ea35e0d5
commit 4078243dad
6 changed files with 11 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ class Output(bytearray):
self += data
def setup_pack(n: int) -> Tuple[Full, bytes, bytearray]:
def setup_pack(n: int) -> Tuple[Full, bytes, Output]:
input = bytes(x & 0xFF for x in range(n))
return Full(), input, Output()