From 078b03fc11596e3f7062e0c2b78a96c02ac09b20 Mon Sep 17 00:00:00 2001 From: Guillaume Charest <1690085+gcharest@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:57:15 -0400 Subject: [PATCH] fix: import method from module with same name (#642) --- app/jobs/scheduled_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/jobs/scheduled_tasks.py b/app/jobs/scheduled_tasks.py index ee0d8dc8..80b26e66 100644 --- a/app/jobs/scheduled_tasks.py +++ b/app/jobs/scheduled_tasks.py @@ -8,7 +8,7 @@ from integrations.aws import identity_store from modules.aws import identity_center -from modules.incident import notify_stale_incident_channels +from modules.incident.notify_stale_incident_channels import notify_stale_incident_channels logging.basicConfig(level=logging.INFO)