This commit is contained in:
Iain Learmonth 2023-10-23 17:53:48 +01:00
parent 64c6414fb8
commit 28e817f814
4 changed files with 5 additions and 3 deletions

View file

@ -10,7 +10,7 @@ report = Blueprint("report", __name__)
@report.route("/blocks", methods=['GET'])
def report_blocks() -> ResponseReturnValue:
blocked_today = db.session.query(
blocked_today = db.session.query( # type: ignore[no-untyped-call]
Origin.domain_name,
Origin.description,
Proxy.added,