Fix black formatting in report_store.py

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/f917b2ae-df6c-4852-b3e1-4c7ea8f68996

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-29 18:58:07 +00:00
parent 53d543f49c
commit 6294e4c935
+1 -3
View File
@@ -44,9 +44,7 @@ class ReportStore:
Returns:
True if the report already exists, False otherwise
"""
return any(
r.get("report_id") == report_id for r in self.domain_reports.get(domain, [])
)
return any(r.get("report_id") == report_id for r in self.domain_reports.get(domain, []))
def _recompute_domain_stats(self, domain: str) -> None:
"""