This commit is contained in:
LeonSGP 2026-04-24 18:23:10 -05:00 committed by GitHub
commit e36cf6d8a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -362,7 +362,9 @@ class HonchoClientConfig:
)
base_url = (
raw.get("baseUrl")
host_block.get("baseUrl")
or host_block.get("base_url")
or raw.get("baseUrl")
or raw.get("base_url")
or os.environ.get("HONCHO_BASE_URL", "").strip()
or None