Skip to content

Commit c66cf13

Browse files
Bastian-KrauseEmantor
authored andcommitted
dockerfiles: replace format/% notation with f-strings using flynt
These changes were performed by flynt automatically. No change in behavior intended. Signed-off-by: Bastian Krause <[email protected]>
1 parent 7741a3f commit c66cf13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: dockerfiles/staging/client/simple-test/remote_shell_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def test_shell(target):
55
stdout, stderr, returncode = ssh_driver.run('uname -r')
66

77
assert stdout
8-
print('Kernel {}'.format(stdout))
8+
print(f'Kernel {stdout}')

0 commit comments

Comments
 (0)