From 56bc9eefea7436e878a54bfa892fc790615ce436 Mon Sep 17 00:00:00 2001 From: DavidVadnais Date: Mon, 21 Apr 2025 17:53:50 -1000 Subject: [PATCH] Fix repeat word in comment --- helpdesk/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/forms.py b/helpdesk/forms.py index d8a729c6..69c1da46 100644 --- a/helpdesk/forms.py +++ b/helpdesk/forms.py @@ -127,7 +127,7 @@ class EditTicketForm(CustomFieldMixin, forms.ModelForm): """ super(EditTicketForm, self).__init__(*args, **kwargs) - # Since title is max 100 characters limit it in in editing + # Since title is max 100 characters limit it in editing if "title" in self.fields: self.fields["title"].max_length = 100 self.fields["title"].widget.attrs["maxlength"] = 100