Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Nov 8, 2023
1 parent 6dc3a00 commit f5322d8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions recipes/LipsyncTTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,9 @@ def additional_notes(self):
"Lipsync": LipsyncPage.get_cost_note(self),
"TTS": TextToSpeechPage.get_cost_note(self),
}
notes = "\n".join([
f"- *{k} cost: {v.strip()}*" if v else ""
for k, v in cost_notes.items()
])
notes = "\n".join(
[f"- *{k} cost: {v.strip()}*" if v else "" for k, v in cost_notes.items()]
)

notes += LipsyncPage.additional_notes(self) or ""
notes += TextToSpeechPage.additional_notes(self) or ""
Expand Down

0 comments on commit f5322d8

Please sign in to comment.