From 0142f455ebd6ecc51fb448fc88fb9bd3fa81436c Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Thu, 25 Jan 2018 14:07:57 +0000 Subject: [PATCH] fixup! Add Lab Type model and allow submissions against it --- opentech/apply/funds/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentech/apply/funds/models.py b/opentech/apply/funds/models.py index 4de7e96b4..f0b7c5979 100644 --- a/opentech/apply/funds/models.py +++ b/opentech/apply/funds/models.py @@ -228,12 +228,12 @@ class Round(SubmittableStreamForm): raise Http404() -class LabType(DefinableWorkflowStreamForm, SubmittableStreamForm): +class LabType(DefinableWorkflowStreamForm, SubmittableStreamForm): # type: ignore class Meta: verbose_name = _("Lab") parent_page_types = ['apply_home.ApplyHomePage'] - subpage_types = [] + subpage_types = [] # type: ignore def get_submit_meta_data(self, **kwargs): return super().get_submit_meta_data( -- GitLab