From bec5fa3d586c3b80bed1e4e3c4b641d3daaf0024 Mon Sep 17 00:00:00 2001 From: Vladimir Filonov Date: Tue, 19 Nov 2024 17:53:58 +0400 Subject: [PATCH] Remove unused imports --- tests/test_incidents.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_incidents.py b/tests/test_incidents.py index c370a6394..6002058f6 100644 --- a/tests/test_incidents.py +++ b/tests/test_incidents.py @@ -13,7 +13,7 @@ get_incident_by_id, get_last_incidents, merge_incidents_to_id, - remove_alerts_to_incident_by_incident_id, enrich_incidents_with_alerts, + remove_alerts_to_incident_by_incident_id, ) from keep.api.core.db_utils import get_json_extract_field from keep.api.core.dependencies import SINGLE_TENANT_UUID @@ -23,7 +23,7 @@ IncidentSeverity, IncidentStatus, ) -from keep.api.models.db.alert import Alert, AlertToIncident, LastAlertToIncident +from keep.api.models.db.alert import Alert, LastAlertToIncident from keep.api.utils.enrichment_helpers import convert_db_alerts_to_dto_alerts from tests.fixtures.client import client, test_app # noqa