more semantic variable name

This commit is contained in:
David Asamu
2025-07-19 03:30:29 +01:00
parent 00c7909c27
commit ec0a30008c
+3 -3
View File
@@ -1483,13 +1483,13 @@ def docker_tag(
else:
language, version = "py", config["python_version"]
lang_distro_tag = f"{version}{distro_tag}"
version_distro_tag = f"{version}{distro_tag}"
# Prepend API version if provided
if api_version:
full_tag = f"{api_version}-{language}{lang_distro_tag}"
full_tag = f"{api_version}-{language}{version_distro_tag}"
else:
full_tag = lang_distro_tag
full_tag = version_distro_tag
return f"{base_image}:{full_tag}"