Skip to content
This repository was archived by the owner on Sep 26, 2020. It is now read-only.

Commit 502d78b

Browse files
committed
Fix string concat
1 parent c1b1710 commit 502d78b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axon/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ def impl_remove_heartbeat(job_id, bucket_name, region):
724724

725725

726726
def create_progress_prefix(job_id):
727-
return "axon-training-progress/" + job_id
727+
return "axon-training-progress/{}".format(job_id)
728728

729729

730730
@click.group()

0 commit comments

Comments
 (0)