Skip to content

Commit cca9d6e

Browse files
committed
Lint
1 parent c6b50f8 commit cca9d6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/text_generation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,10 @@ def get_reply_from_output_ids(output_ids, state=None, starting_from=0):
274274
if (hasattr(shared.tokenizer, 'convert_ids_to_tokens') and len(output_ids) > starting_from) and not reply.startswith(' '):
275275
first_token = shared.tokenizer.convert_ids_to_tokens(int(output_ids[starting_from]))
276276
if isinstance(first_token, (bytes,)):
277-
#try to decode the bytes to a string
277+
# try to decode the bytes to a string
278+
# if it fails, which means it's not a string in this turn, just ignore it
278279
try:
279280
first_token = first_token.decode('utf8')
280-
#if it fails, which means it's not a string in this turn, just ignore it
281281
except UnicodeDecodeError:
282282
first_token = ''
283283

0 commit comments

Comments
 (0)