aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc/resources/forms.py')
-rw-r--r--pyblackbird_cc/resources/forms.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pyblackbird_cc/resources/forms.py b/pyblackbird_cc/resources/forms.py
index ca38640..d0fb001 100644
--- a/pyblackbird_cc/resources/forms.py
+++ b/pyblackbird_cc/resources/forms.py
@@ -56,7 +56,8 @@ class ResourceCreateForm(forms.Form):
card_description = forms.CharField(
max_length=1000,
widget=forms.Textarea,
- help_text="If you enter text here, it will be used in the 'card' description box on the home page. Max 1000 characters.",
+ help_text=("If you enter text here, it will be used in the 'card' description "
+ "box on the home page. Max 1000 characters."),
)
resource_type = forms.ModelChoiceField(queryset=ResourceType.objects.all())
age_range = forms.ChoiceField(
@@ -111,7 +112,8 @@ class ResourceCreateForm(forms.Form):
min_value=1,
max_value=3,
required=False,
- help_text="Please enter either 1, 2 or 3 here. This will dictate where on the page this resource will feature on the main list page.",
+ help_text=("Please enter either 1, 2 or 3 here. This will dictate where on the page "
+ "this resource will feature on the main list page."),
)
def clean_thumbnail_files(self):