We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f626f5e commit 59a459eCopy full SHA for 59a459e
src/together/cli/api/utils.py
@@ -105,7 +105,7 @@ def generate_progress_bar(
105
progress = "Progress: [bold green]completed[/bold green]"
106
elif finetune_job.updated_at is not None:
107
# Replace 'Z' with '+00:00' for Python 3.10 compatibility
108
- updated_at_str = finetune_job.updated_at.replace('Z', '+00:00')
+ updated_at_str = finetune_job.updated_at.replace("Z", "+00:00")
109
update_at = datetime.fromisoformat(updated_at_str).astimezone()
110
111
if finetune_job.progress is not None:
0 commit comments