fix: Fix the base path being used (#79)

This commit is contained in:
Miguel Pragosa 2024-10-15 10:54:56 +01:00 committed by GitHub
parent e8590d7f38
commit b0f91d10a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ class Configuration:
) -> None:
"""Constructor
"""
self._base_path = "https://api.thousandeyes.com" if host is None else host
self._base_path = "https://api.thousandeyes.com/v7" if host is None else host
"""Default Base url
"""
self.access_token = access_token