From b1fba79a2e3aa1a6b2875e7c65e8f4fb092e947a Mon Sep 17 00:00:00 2001 From: Lukas Date: Tue, 14 Apr 2026 12:19:35 +0200 Subject: [PATCH] Remove unused asyncio import from log_service Clean log_service.py by deleting the unused asyncio import and mark Task 24 completed in Docs/Tasks.md. --- Docs/Tasks.md | 2 ++ backend/app/services/log_service.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Docs/Tasks.md b/Docs/Tasks.md index f2db24d..0ed8c38 100644 --- a/Docs/Tasks.md +++ b/Docs/Tasks.md @@ -695,6 +695,8 @@ Allocating an in-memory structure and its lock mechanisms for a feature that is ### Task 24 — Remove unused asyncio import from log_service.py +**Status:** Completed + **Severity:** Low **Where:** diff --git a/backend/app/services/log_service.py b/backend/app/services/log_service.py index 74a7720..7006e0e 100644 --- a/backend/app/services/log_service.py +++ b/backend/app/services/log_service.py @@ -6,7 +6,6 @@ fail2ban socket operations. from __future__ import annotations -import asyncio from app.utils.async_utils import run_blocking import re from pathlib import Path