Compare commits

...

2 Commits

Author SHA1 Message Date
9748230745 Added a new debug configuration for debugging
All checks were successful
/ unit-tests (push) Successful in 1m2s
the current file.
2025-11-04 07:55:34 +01:00
8c0a92a8b7 Remove unused import of DefaultAzureCredential from devops.py 2025-11-04 07:55:27 +01:00
2 changed files with 7 additions and 1 deletions

7
.vscode/launch.json vendored
View File

@@ -10,6 +10,13 @@
"request": "launch",
"program": "${workspaceFolder}/harvester.py",
"console": "integratedTerminal"
},
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}

View File

@@ -2,7 +2,6 @@ from __future__ import annotations
import requests
import urllib.parse
from uuid import UUID
from azure.identity import DefaultAzureCredential
DEVOPS_SCOPE = "https://app.vssps.visualstudio.com/.default"
DEVOPS_API_VERSION = "7.1"