We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0eebd commit 735626eCopy full SHA for 735626e
classification/templatetags/classification_tags.py
@@ -567,7 +567,7 @@ def criteria_strength(strength: CriteriaStrength):
567
def criteria_strength_td(strength: Union[CriteriaStrength, Collection[CriteriaStrength]]):
568
# going to display NM, NS, NA all the same
569
if isinstance(strength, list):
570
- all_met_strengths = [str for str in strength if str.is_met]
+ all_met_strengths = [s for s in strength if s.is_met]
571
if len(all_met_strengths) > 1:
572
return {
573
"strengths": all_met_strengths
0 commit comments