Skip to content

Commit

Permalink
Fix string interpolation in dubbing task completion message
Browse files Browse the repository at this point in the history
- Corrected print statement to use single quotes for `run_id` interpolation
  • Loading branch information
cr2007 committed Jul 11, 2024
1 parent 398fe72 commit 44dd30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cambai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def dub(
if task["run_id"] is None:
raise APIError("Run ID is None")

print(f"Dubbing Task {task["run_id"]} Completed!")
print(f"Dubbing Task {task['run_id']} Completed!")

# Return the dubbed run information
return self.get_dubbed_run_info(task["run_id"])
Expand Down

0 comments on commit 44dd30f

Please sign in to comment.