acfl: use f-strings (#40433)

This commit is contained in:
Alec Scott 2023-10-12 02:30:22 -07:00 committed by GitHub
parent 3e1f2392d4
commit 30d29d0201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,8 +185,7 @@ def get_acfl_prefix(spec):
) )
else: else:
return join_path( return join_path(
spec.prefix, spec.prefix, f"arm-linux-compiler-{spec.version}_{get_os(spec.version.string)}"
"arm-linux-compiler-{0}_{1}".format(spec.version, get_os(spec.version.string)),
) )
@ -238,7 +237,7 @@ class Acfl(Package):
# Run the installer with the desired install directory # Run the installer with the desired install directory
def install(self, spec, prefix): def install(self, spec, prefix):
exe = Executable( exe = Executable(
"./arm-compiler-for-linux_{0}_{1}.sh".format(spec.version, get_os(spec.version.string)) f"./arm-compiler-for-linux_{spec.version}_{get_os(spec.version.string)}.sh"
) )
exe("--accept", "--force", "--install-to", prefix) exe("--accept", "--force", "--install-to", prefix)