diff --git a/progit/forms.py b/progit/forms.py index 4c3c435..8dcba43 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -76,14 +76,6 @@ class AddIssueTagForm(wtf.Form): ) -class AddIssueAssigneeForm(wtf.Form): - ''' Form to add a tag to an issue. ''' - assignee = wtforms.TextField( - 'assignee*', - [wtforms.validators.Required()] - ) - - class AddIssueDependencyForm(wtf.Form): ''' Form to add a blocked issue to an issue. ''' depends = wtforms.TextField(