Remove f-string

This commit is contained in:
Antonio Andelic 2023-10-18 09:19:09 +00:00
parent be7be17352
commit 71adb434e3

View File

@ -37,7 +37,7 @@ def get_additional_envs() -> List[str]:
# some cloud-specific features require feature flags enabled
# so we need this ENV to be able to disable the randomization
# of feature flags
result.append(f"RANDOMIZE_KEEPER_FEATURE_FLAGS=1")
result.append("RANDOMIZE_KEEPER_FEATURE_FLAGS=1")
return result