Skip to content

Commit

Permalink
Update the client paths in connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Nechvátal committed Apr 18, 2023
1 parent bde80f5 commit 03432a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions azure-devops/azure/devops/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand All @@ -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):
Expand Down

0 comments on commit 03432a8

Please sign in to comment.