From 4cf46156f1ebcc9bf632e345000e1d3d430be1f5 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Sat, 29 Oct 2016 04:20:16 -0400 Subject: [PATCH] More PEP8 changes --- helpdesk/forms.py | 9 +++++++-- helpdesk/models.py | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/helpdesk/forms.py b/helpdesk/forms.py index 07ba6432..4e02f7e5 100644 --- a/helpdesk/forms.py +++ b/helpdesk/forms.py @@ -539,12 +539,15 @@ class UserSettingsForm(forms.Form): label=_('Number of tickets to show per page'), help_text=_('How many tickets do you want to see on the Ticket List page?'), required=False, - choices=((10,'10'), (25,'25'), (50,'50'), (100,'100')), + choices=((10, '10'), (25, '25'), (50, '50'), (100, '100')), ) use_email_as_submitter = forms.BooleanField( label=_('Use my e-mail address when submitting tickets?'), - help_text=_('When you submit a ticket, do you want to automatically use your e-mail address as the submitter address? You can type a different e-mail address when entering the ticket if needed, this option only changes the default.'), + help_text=_('When you submit a ticket, do you want to automatically ' + 'use your e-mail address as the submitter address? You ' + 'can type a different e-mail address when entering the ' + 'ticket if needed, this option only changes the default.'), required=False, ) @@ -581,6 +584,7 @@ class TicketCCUserForm(forms.ModelForm): else: users = User.objects.filter(is_active=True).order_by(User.USERNAME_FIELD) self.fields['user'].queryset = users + class Meta: model = TicketCC exclude = ('ticket', 'email',) @@ -590,6 +594,7 @@ class TicketCCEmailForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(TicketCCEmailForm, self).__init__(*args, **kwargs) + class Meta: model = TicketCC exclude = ('ticket', 'user',) diff --git a/helpdesk/models.py b/helpdesk/models.py index cf93af78..a7ba36c3 100644 --- a/helpdesk/models.py +++ b/helpdesk/models.py @@ -231,8 +231,8 @@ class Queue(models.Model): logging_type = models.CharField( _('Logging Type'), - max_length = 5, - choices = ( + max_length=5, + choices=( ('none', _('None')), ('debug', _('Debug')), ('info', _('Information')),