fix(models): Add type hint for series variable in get_series_blocks method
This commit is contained in:
@@ -670,6 +670,7 @@ class Case(models.Model, AuthorMixin, QuestionMixin):
|
|||||||
|
|
||||||
def get_series_blocks(self):
|
def get_series_blocks(self):
|
||||||
html = ""
|
html = ""
|
||||||
|
s: Series
|
||||||
for s in self.series.all():
|
for s in self.series.all():
|
||||||
html += s.get_block()
|
html += s.get_block()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user