diff --git a/hypha/apply/funds/forms.py b/hypha/apply/funds/forms.py
index 9a368242fa455662a119951e7917ecb773355a65..272e2d720e4090e13d3ea61f55ebe1cf3c9ec051 100644
--- a/hypha/apply/funds/forms.py
+++ b/hypha/apply/funds/forms.py
@@ -11,7 +11,7 @@ from django_select2.forms import Select2Widget
 from hypha.apply.categories.models import MetaTerm
 from hypha.apply.users.models import User
 
-from .models import ApplicationSubmission, AssignedReviewers, ReviewerRole, Reminder
+from .models import ApplicationSubmission, AssignedReviewers, Reminder, ReviewerRole
 from .utils import render_icon
 from .widgets import MetaTermSelect2Widget, Select2MultiCheckboxesWidget
 from .workflow import get_action_mapping
diff --git a/hypha/apply/funds/management/commands/send_reminders.py b/hypha/apply/funds/management/commands/send_reminders.py
index 38f28ef4ca6f65eed0da86cfaff0a75f3cb00c5f..cecc309862c59472ca8863b3e70ab56115b6f7ca 100644
--- a/hypha/apply/funds/management/commands/send_reminders.py
+++ b/hypha/apply/funds/management/commands/send_reminders.py
@@ -6,8 +6,8 @@ from django.urls import set_urlconf
 from django.utils import timezone
 
 from hypha.apply.activity.messaging import MESSAGES, messenger
-from hypha.apply.home.models import ApplyHomePage
 from hypha.apply.funds.models import Reminder
+from hypha.apply.home.models import ApplyHomePage
 
 
 class Command(BaseCommand):
diff --git a/hypha/apply/funds/models/__init__.py b/hypha/apply/funds/models/__init__.py
index a75d40240c0ce4cc22a74c7ef863d375565453ec..a7c7beabb39510a751dcd207bd5824a37f81fabe 100644
--- a/hypha/apply/funds/models/__init__.py
+++ b/hypha/apply/funds/models/__init__.py
@@ -2,10 +2,10 @@ from django.utils.translation import ugettext_lazy as _
 
 from .applications import ApplicationBase, LabBase, RoundBase, RoundsAndLabs  # NOQA
 from .forms import ApplicationForm
+from .reminders import Reminder
 from .reviewer_role import ReviewerRole
 from .screening import ScreeningStatus
 from .submissions import ApplicationRevision, ApplicationSubmission, AssignedReviewers
-from .reminders import Reminder
 
 __all__ = ['ApplicationSubmission', 'AssignedReviewers', 'ApplicationRevision', 'ApplicationForm', 'ScreeningStatus', 'ReviewerRole', 'Reminder']