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

(cherry picked from commit b0f91d10a6)
This commit is contained in:
Miguel Pragosa 2024-10-15 10:54:56 +01:00 committed by Phellippe Lima
parent 71cf7d5a51
commit bc194185c7

View File

@ -38,7 +38,7 @@ class Configuration:
) -> None: ) -> None:
"""Constructor """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 """Default Base url
""" """
self.access_token = access_token self.access_token = access_token