Fixed returning type hints

This commit is contained in:
Christian Risi 2025-10-02 01:29:57 +02:00
parent 7cfaf601b4
commit b80b4e4112

View File

@ -105,7 +105,7 @@ class NanoSocratesBPE(Encoder):
return piece
PIECE_LENGTH = len(piece) - 1
NEW_PIECE = []
NEW_PIECE : list[int]= []
index = 0
while index < PIECE_LENGTH: