fix: Fix the base path being used

This commit is contained in:
Miguel Pragosa 2024-10-14 18:01:59 +01:00
parent e8590d7f38
commit c560643c11

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