From 410b71f07f059e5694753d60dc9906007bdbc6cc Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 18 May 2026 10:05:54 +0100 Subject: [PATCH] fix(models): Add type hint for series variable in get_series_blocks method --- atlas/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/atlas/models.py b/atlas/models.py index d48ba047..def0a463 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -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()