Skip to content

Commit d393a40

Browse files
authored
fix: fixing the docstring
1 parent 6aeb50d commit d393a40

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

openedx_filters/learning/filters.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,9 @@ def run_filter(cls, readonly_fields: set, user: Any) -> tuple[Any, Any]:
14791479
user (User): the Django User whose account settings are being updated.
14801480
14811481
Returns:
1482-
set: the (possibly expanded) set of read-only field names.
1482+
tuple[Any | Any]:
1483+
Any: the (possibly expanded) set of read-only field names.
1484+
Any: the Django User object.
14831485
"""
14841486
data = super().run_pipeline(readonly_fields=readonly_fields, user=user)
14851487
return (data.get("readonly_fields"), data.get("user"))

0 commit comments

Comments
 (0)