Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 3c3e80f

Browse files
committed
refact: replace format to f-string
1 parent 066c660 commit 3c3e80f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vrelease/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def main():
3232
bin_path = abspath(join(dirname(__file__), 'bin', file))
3333

3434
cli_input = sys.argv[1:]
35-
cmd = '{} {}'.format(bin_path, ' '.join(cli_input)).strip()
35+
cmd = f'{bin_path} {" ".join(cli_input)}'.strip()
3636
system(cmd)
3737

3838
except Exception as err: # pylint: disable=broad-except

0 commit comments

Comments
 (0)