Closed domoscargin closed 4 years ago
govukCheckboxes includes a for attribute, value in item.attributes iteration which fails.
for attribute, value in item.attributes
This can be fixed by using .items() instead of the Python default .keys()
.items()
.keys()
govukCheckboxes includes a
for attribute, value in item.attributes
iteration which fails.This can be fixed by using
.items()
instead of the Python default.keys()