plan: add flake8 complexity + unused global fixes to checklist

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/e58d59de-a79d-48e1-a4fc-ffb61b868593

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-29 10:54:05 +00:00
parent ccb447f29b
commit 7752479444
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ def test_upload_populates_domains_list(client: TestClient):
response = client.get("/api/v1/reports/domains")
assert response.status_code == 200
domains = response.json()
assert "example.com" in domains
assert any(d == "example.com" for d in domains)
def test_reports_domains_empty(client: TestClient):