Skip to content

Commit cc2f7ee

Browse files
authored
fix black problems
1 parent a9d91ba commit cc2f7ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tensorflow_tts/processor/libritts.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,6 @@ def clean_g2p(self, g2p_text: list):
114114
"@END"
115115
) # TODO try learning without end token and compare results
116116
break
117-
data.append("@" + txt) if txt != " "
117+
if txt != " ":
118+
data.append("@" + txt)
118119
return data

0 commit comments

Comments
 (0)