Skip to content

Commit 1fb7ce9

Browse files
feldera-botabhizer
authored andcommitted
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent 41021ac commit 1fb7ce9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

python/feldera/rest/_helpers.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ def requests_verify_from_env() -> str | bool:
2727
if env_feldera_tls_insecure is None:
2828
FELDERA_TLS_INSECURE = False
2929
else:
30-
FELDERA_TLS_INSECURE = env_feldera_tls_insecure.strip().lower() in ("1", "true", "yes")
30+
FELDERA_TLS_INSECURE = env_feldera_tls_insecure.strip().lower() in (
31+
"1",
32+
"true",
33+
"yes",
34+
)
3135

3236
requests_verify = not FELDERA_TLS_INSECURE
3337
if FELDERA_HTTPS_TLS_CERT is not None:

0 commit comments

Comments
 (0)