Skip to content

Commit

Permalink
Uses single quotes to not confused the f-string
Browse files Browse the repository at this point in the history
Fixes Pylint Error `E001`
  • Loading branch information
cr2007 committed Jun 4, 2024
1 parent 594d11e commit 2bf0af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickstart_dubbing.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def main():
polling_interval=30 # Set the interval to check the status of the dubbing task
)

print(f"Output Video URL: {values["video_url"]}")
print(f"Output Audio URL: {values["audio_url"]}")
print(f"Output Video URL: {values['video_url']}")
print(f"Output Audio URL: {values['audio_url']}")

if __name__ == "__main__":
main()

0 comments on commit 2bf0af7

Please sign in to comment.