fix: ensure base_url ends with a trailing slash (#4388)

This commit is contained in:
SubashMohan 2025-03-30 03:04:30 +05:30 committed by GitHub
parent 0857e4809d
commit ecc155d082
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,7 +75,7 @@ class HighspotClient:
self.key = key
self.secret = secret
self.base_url = base_url
self.base_url = base_url.rstrip("/") + "/"
self.timeout = timeout
# Set up session with retry logic