Skip to content

Commit ae05e08

Browse files
committed
fix: add missing type in HTTPS_PROXY constant
Signed-off-by: Jorge Garcia Oncins <jgarciao@redhat.com>
1 parent b861f3a commit ae05e08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/llama_stack/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ModelInfo(NamedTuple):
2929

3030

3131
IS_DISCONNECTED_CLUSTER: bool = os.getenv("IS_DISCONNECTED_CLUSTER", "false").lower() == "true"
32-
HTTPS_PROXY = os.getenv("SQUID_HTTPS_PROXY", "")
32+
HTTPS_PROXY: str = os.getenv("SQUID_HTTPS_PROXY", "")
3333

3434
# LLS_CLIENT_VERIFY_SSL is false by default to be able to test with Self-Signed certificates
3535
LLS_CLIENT_VERIFY_SSL = os.getenv("LLS_CLIENT_VERIFY_SSL", "false").lower() == "true"

0 commit comments

Comments
 (0)