Skip to content

Commit

Permalink
replace f-string with string format for compatibility with py3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eterna2 committed Mar 8, 2019
1 parent 33ed2a5 commit c99a46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/kfp/compiler/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def _build_conventional_artifact(name, path):
def _sidecar_to_template(tsidecar):
index, sidecar = tsidecar
sidecar_template = {
'name': f'{op.name}-{sidecar.name}-{index}',
'name': '{}-{}-{}'.format(op.name, sidecar.name, index),
'image': sidecar.image
}
sidecar_processed_arguments = self._process_args(op.arguments, op.argument_inputs)
Expand Down

0 comments on commit c99a46d

Please sign in to comment.