@@ -607,13 +607,13 @@ def featured_case_study_logo(self):
607
607
class NumericResultBlock (blocks .StructBlock ):
608
608
label = blocks .CharBlock (
609
609
max_length = 255 ,
610
- help_text = mark_safe ( # noqa: S308
610
+ help_text = mark_safe (
611
611
"Short text to describe the change e.g. <strong>Raised over</strong>"
612
612
),
613
613
)
614
614
headline_number = blocks .CharBlock (
615
615
max_length = 255 ,
616
- help_text = mark_safe ("A numerical value e.g. <strong>£600k</strong>" ), # noqa: S308
616
+ help_text = mark_safe ("A numerical value e.g. <strong>£600k</strong>" ),
617
617
)
618
618
619
619
@@ -1031,16 +1031,16 @@ class Meta:
1031
1031
class NumericStatisticsBlock (blocks .StructBlock ):
1032
1032
headline_number = blocks .CharBlock (
1033
1033
max_length = 255 ,
1034
- help_text = mark_safe ("A numerical value e.g. <strong>30%</strong>" ), # noqa: S308
1034
+ help_text = mark_safe ("A numerical value e.g. <strong>30%</strong>" ),
1035
1035
)
1036
1036
description = blocks .TextBlock (
1037
- help_text = mark_safe ( # noqa: S308
1037
+ help_text = mark_safe (
1038
1038
"Text to describe the change e.g. <strong>Reduction in accessibility errors</strong>"
1039
1039
)
1040
1040
)
1041
1041
further_details = blocks .TextBlock (
1042
1042
required = False ,
1043
- help_text = mark_safe ( # noqa: S308
1043
+ help_text = mark_safe (
1044
1044
"Text to give more information, e.g. <strong>Over 80% of pages</strong>"
1045
1045
),
1046
1046
)
@@ -1083,13 +1083,13 @@ class Meta:
1083
1083
class TextualStatisticsBlock (blocks .StructBlock ):
1084
1084
headline_text = blocks .CharBlock (
1085
1085
max_length = 255 ,
1086
- help_text = mark_safe ( # noqa: S308
1086
+ help_text = mark_safe (
1087
1087
"Describe a general improvement, e.g. <strong>Reduction in accessibility issues</strong>"
1088
1088
),
1089
1089
)
1090
1090
further_details = blocks .TextBlock (
1091
1091
required = False ,
1092
- help_text = mark_safe ( # noqa: S308
1092
+ help_text = mark_safe (
1093
1093
"Text to give more information, e.g. <strong>Over 80% of pages</strong>"
1094
1094
),
1095
1095
)
0 commit comments