From abc531abe0b9a7ce2d9817a8708a30837ea931d3 Mon Sep 17 00:00:00 2001 From: Mikhail Gordeev Date: Tue, 13 Dec 2022 02:40:16 +0300 Subject: [PATCH] Fix unnecessary f-string --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 0d3dea4..c2b62b1 100755 --- a/build.py +++ b/build.py @@ -104,7 +104,7 @@ class DockerBuilder: linux32 = '$([ "$(rpm --eval %_host_cpu)" = i586 ] && echo linux32)' for task in tasks: apt_repo += f"\n {linux32} apt-repo add {task} && \\" - apt_repo += f"\n apt-get update && \\" + apt_repo += "\n apt-get update && \\" else: apt_repo = "\\" update_command = f"""RUN apt-get update && {apt_repo}"""