Updated authentication scenarios.
All checks were successful
/ unit-tests (push) Successful in 9s

This commit is contained in:
2025-11-03 21:24:25 +01:00
parent 678b6161cc
commit 31e1b88cd1
3 changed files with 50 additions and 7 deletions

View File

@@ -108,8 +108,6 @@ class DevOps():
class Organization(DevOps):
def __init__(self, org_url: str, token: str | None = None, api_version: str = DEVOPS_API_VERSION):
if token is None:
token = DefaultAzureCredential().get_token(DEVOPS_SCOPE).token
super().__init__(org_url, token, api_version)
@property