fix(models): Add type hint for series variable in get_series_blocks method

This commit is contained in:
Ross
2026-05-18 10:05:54 +01:00
parent e51e8358bb
commit 410b71f07f
+1
View File
@@ -670,6 +670,7 @@ class Case(models.Model, AuthorMixin, QuestionMixin):
def get_series_blocks(self):
html = ""
s: Series
for s in self.series.all():
html += s.get_block()