From a192380d10f4c6f1680eeb674ddc2b3f6726785e Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Tue, 2 Jan 2024 18:12:34 +0300 Subject: [PATCH] bytebeat_compiler.py: don't concatenate env. variable --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index a87ef8d..da8aaa8 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -41,7 +41,7 @@ DEFAULT_PARAMETERS = { def fetch(name: str): res = DEFAULT_PARAMETERS[name] if from_env := environ.get(name): - res += from_env + res = from_env return res def read_file(path: str) -> str: