From e6d006549ad875e70bee2383ea62b8b7abc09b53 Mon Sep 17 00:00:00 2001 From: Agrendalath Date: Wed, 18 Dec 2024 00:06:27 +0100 Subject: [PATCH] test: remove the typing from d0bd770d1 The Redwood branch is still using Python 3.8 for unit tests. This commit can be safely ignored in Sumac. --- lms/djangoapps/course_home_api/outline/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/course_home_api/outline/views.py b/lms/djangoapps/course_home_api/outline/views.py index d822d980f90a..9f9f0efbc984 100644 --- a/lms/djangoapps/course_home_api/outline/views.py +++ b/lms/djangoapps/course_home_api/outline/views.py @@ -609,7 +609,7 @@ def completions_dict(self): } @cached_property - def aggregator_block_types(self) -> set[str]: + def aggregator_block_types(self): """ Return a set of block types that belong to XBlockCompletionMode.AGGREGATOR.