From 03432a83b3ecc012e80689a08dce4e5b525dc2f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Nechv=C3=A1tal?= Date: Tue, 18 Apr 2023 21:09:40 +0200 Subject: [PATCH] Update the client paths in connection --- azure-devops/azure/devops/connection.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-devops/azure/devops/connection.py b/azure-devops/azure/devops/connection.py index 78d8f9cf..9c76e52a 100644 --- a/azure-devops/azure/devops/connection.py +++ b/azure-devops/azure/devops/connection.py @@ -10,9 +10,9 @@ from .client_configuration import ClientConfiguration from .exceptions import AzureDevOpsClientRequestError from .released.client_factory import ClientFactory -from .v5_1.location.location_client import LocationClient -from .v5_1.client_factory import ClientFactoryV5_1 -from .v6_0.client_factory import ClientFactoryV6_0 +from .v7_1.location.location_client import LocationClient +from .v7_1.client_factory import ClientFactoryV7_1 +from .v7_0.client_factory import ClientFactoryV7_0 logger = logging.getLogger(__name__) @@ -33,8 +33,8 @@ def __init__(self, base_url=None, creds=None, user_agent=None): self._creds = creds self._resource_areas = None self.clients = ClientFactory(self) - self.clients_v5_1 = ClientFactoryV5_1(self) - self.clients_v6_0 = ClientFactoryV6_0(self) + self.clients_v7_1 = ClientFactoryV7_1(self) + self.clients_v7_0 = ClientFactoryV7_0(self) self.use_fiddler = False def get_client(self, client_type):