We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080393a commit 52e15e0Copy full SHA for 52e15e0
1 file changed
tests/e2e/utils/utils.py
@@ -104,7 +104,7 @@ def cluster_lightspeed_config_dir() -> str:
104
"""
105
raw = os.getenv("E2E_LIGHTSPEED_CONFIG_DIR", _DEFAULT_CLUSTER_LIGHTSPEED_CONFIG_DIR)
106
stripped = raw.strip()
107
- return stripped if stripped else _DEFAULT_CLUSTER_LIGHTSPEED_CONFIG_DIR
+ return stripped or _DEFAULT_CLUSTER_LIGHTSPEED_CONFIG_DIR
108
109
110
def cluster_lightspeed_config_path(filename: str) -> str:
0 commit comments