From f4f46bde011ddda6da4742ede8d6f40b68646489 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Fri, 10 Aug 2018 10:20:51 +0100 Subject: [PATCH] fixup! Make review forms behave the same way as application forms --- opentech/apply/funds/models/applications.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/opentech/apply/funds/models/applications.py b/opentech/apply/funds/models/applications.py index 0e4fffcc5..e9aa7fe05 100644 --- a/opentech/apply/funds/models/applications.py +++ b/opentech/apply/funds/models/applications.py @@ -21,7 +21,6 @@ from ..admin_forms import WorkflowFormAdminForm from ..edit_handlers import ReadOnlyPanel, ReadOnlyInlinePanel from .submissions import ApplicationSubmission -from .forms import RoundBaseForm from .utils import admin_url, EmailForm, SubmittableStreamForm, WorkflowStreamForm, LIMIT_TO_REVIEWERS, LIMIT_TO_STAFF @@ -174,7 +173,6 @@ class RoundBase(WorkflowStreamForm, SubmittableStreamForm): # type: ignore new_form.save() new_class.objects.create(round=self, form=new_form) - def get_submit_meta_data(self, **kwargs): return super().get_submit_meta_data( page=self.get_parent(), -- GitLab