From 0738e99c60cba48e36df3731200f9b34be04439c Mon Sep 17 00:00:00 2001 From: nsprenkle Date: Tue, 4 Jun 2024 13:16:18 -0400 Subject: [PATCH] docs: update docstring --- openedx_filters/learning/filters.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/openedx_filters/learning/filters.py b/openedx_filters/learning/filters.py index c43317d..0a0ea6b 100644 --- a/openedx_filters/learning/filters.py +++ b/openedx_filters/learning/filters.py @@ -564,9 +564,8 @@ def run_filter(cls, context, student_view_context): Execute a filter with the specified signature. Arguments: - context (dict): rendering context values like is_mobile_app, show_title..etc., - student_view_context (dict): context passed to the student_view, includes query params - request (request): requests object + context (dict): rendering context values like is_mobile_app, show_title, etc. + student_view_context (dict): context passed to the student_view of the block context """ data = super().run_pipeline(context=context, student_view_context=student_view_context) return data.get("context"), data.get("student_view_context")