From 693b86e560b828699a3bfbd649e63886db32c7af Mon Sep 17 00:00:00 2001 From: Ivan Niedielnitsev <81557788+NiedielnitsevIvan@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:26:03 +0300 Subject: [PATCH] style: fix indentations Co-authored-by: monteri <36768631+monteri@users.noreply.github.com> --- openedx/features/course_experience/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openedx/features/course_experience/utils.py b/openedx/features/course_experience/utils.py index b66d8a15764b..44170cff4998 100644 --- a/openedx/features/course_experience/utils.py +++ b/openedx/features/course_experience/utils.py @@ -20,8 +20,8 @@ def get_course_outline_block_tree_with_cache(request, course_id, user=None, allo Returns the root block of the course outline, with children as blocks. allow_start_dates_in_future (bool): When True, will allow blocks to be - returned that can bypass the StartDateTransformer's filter to show - blocks with start dates in the future. + returned that can bypass the StartDateTransformer's filter to show + blocks with start dates in the future. """ return get_course_outline_block_tree(request, course_id, user, allow_start_dates_in_future)