From 3ccdcee2b5bbf7a181fe3d1e8eb8644b0f8d887c Mon Sep 17 00:00:00 2001
From: Vaibhav Mule <vaibhavmule135@gmail.com>
Date: Sun, 15 Mar 2020 22:42:52 +0530
Subject: [PATCH] fix lint

---
 hypha/apply/funds/forms.py                              | 2 +-
 hypha/apply/funds/management/commands/send_reminders.py | 2 +-
 hypha/apply/funds/models/__init__.py                    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hypha/apply/funds/forms.py b/hypha/apply/funds/forms.py
index 9a368242f..272e2d720 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 38f28ef4c..cecc30986 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 a75d40240..a7c7beabb 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']
 
-- 
GitLab