Skip to content

Commit

Permalink
fix broken go live email notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed Nov 27, 2024
1 parent 6c0cbd2 commit 4a31b2e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/app/service/test_sender.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import pytest
from flask import current_app
from app.utils import hilite
from sqlalchemy import func, select

from app import db
from app.dao.services_dao import dao_add_user_to_service, dao_fetch_active_users_for_service
from app.dao.services_dao import (
dao_add_user_to_service,
dao_fetch_active_users_for_service,
)
from app.enums import NotificationType, TemplateType
from app.models import Notification
from app.service.sender import send_notification_to_service_users
from app.utils import hilite
from tests.app.db import create_service, create_template, create_user


Expand Down

0 comments on commit 4a31b2e

Please sign in to comment.