csukuangfj commited on
Commit
c7ac9c7
1 Parent(s): f5abfaa

small fixes

Browse files
Files changed (1) hide show
  1. decode.py +2 -2
decode.py CHANGED
@@ -127,9 +127,9 @@ def decode(
127
  if punct is not None:
128
  seg.text = punct.add_punctuation(seg.text)
129
  segment_list.append(seg)
130
- logging.info("all text: {all_text}")
131
  all_text = " ".join(all_text)
132
- logging.info("all text: {all_text}")
133
  if punct is not None:
134
  all_text = punct.add_punctuation(all_text)
135
 
 
127
  if punct is not None:
128
  seg.text = punct.add_punctuation(seg.text)
129
  segment_list.append(seg)
130
+ logging.info(f"all text: {all_text}")
131
  all_text = " ".join(all_text)
132
+ logging.info(f"all text: {all_text}")
133
  if punct is not None:
134
  all_text = punct.add_punctuation(all_text)
135