Skip to content

Commit 03432a8

Browse files
author
Petr Nechvátal
committed
Update the client paths in connection
1 parent bde80f5 commit 03432a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

azure-devops/azure/devops/connection.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from .client_configuration import ClientConfiguration
1111
from .exceptions import AzureDevOpsClientRequestError
1212
from .released.client_factory import ClientFactory
13-
from .v5_1.location.location_client import LocationClient
14-
from .v5_1.client_factory import ClientFactoryV5_1
15-
from .v6_0.client_factory import ClientFactoryV6_0
13+
from .v7_1.location.location_client import LocationClient
14+
from .v7_1.client_factory import ClientFactoryV7_1
15+
from .v7_0.client_factory import ClientFactoryV7_0
1616

1717
logger = logging.getLogger(__name__)
1818

@@ -33,8 +33,8 @@ def __init__(self, base_url=None, creds=None, user_agent=None):
3333
self._creds = creds
3434
self._resource_areas = None
3535
self.clients = ClientFactory(self)
36-
self.clients_v5_1 = ClientFactoryV5_1(self)
37-
self.clients_v6_0 = ClientFactoryV6_0(self)
36+
self.clients_v7_1 = ClientFactoryV7_1(self)
37+
self.clients_v7_0 = ClientFactoryV7_0(self)
3838
self.use_fiddler = False
3939

4040
def get_client(self, client_type):

0 commit comments

Comments
 (0)