Run auto-correct on app/ and tests/

This commit is contained in:
Ben Thorner
2021-03-10 13:55:06 +00:00
parent 321b4913ed
commit a91fde2fda
248 changed files with 2026 additions and 1716 deletions

View File

@@ -2,8 +2,8 @@ import collections
from datetime import datetime
from unittest.mock import Mock
from freezegun import freeze_time
import pytest
from freezegun import freeze_time
from app.service.statistics import (
add_monthly_notification_status_stats,
@@ -11,7 +11,7 @@ from app.service.statistics import (
create_stats_dict,
create_zeroed_stats_dicts,
format_admin_stats,
format_statistics
format_statistics,
)
StatsRow = collections.namedtuple('row', ('notification_type', 'status', 'count'))