From 1ab46543963819c90d33b78634bee9bc4659ecce Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Wed, 20 Jun 2018 16:54:12 +0100 Subject: [PATCH] Fix codestyle --- app/dao/fact_notification_status_dao.py | 1 - tests/app/dao/test_fact_notification_status_dao.py | 1 - 2 files changed, 2 deletions(-) diff --git a/app/dao/fact_notification_status_dao.py b/app/dao/fact_notification_status_dao.py index 4e7a6a035..6369197e3 100644 --- a/app/dao/fact_notification_status_dao.py +++ b/app/dao/fact_notification_status_dao.py @@ -73,4 +73,3 @@ def update_fact_notification_status(data, process_day): ) db.session.connection().execute(stmt) db.session.commit() - diff --git a/tests/app/dao/test_fact_notification_status_dao.py b/tests/app/dao/test_fact_notification_status_dao.py index 24cafe951..84fa0eae1 100644 --- a/tests/app/dao/test_fact_notification_status_dao.py +++ b/tests/app/dao/test_fact_notification_status_dao.py @@ -80,4 +80,3 @@ def test__update_fact_notification_status_updates_row(notify_db_session): ).all() assert len(updated_fact_data) == 1 assert updated_fact_data[0].notification_count == 2 -