Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lms/djangoapps/instructor_analytics/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def enrolled_students_features(course_key, features):

students = [enrollment.user for enrollment in enrollments]

student_features = [x for x in get_student_features_with_custom(course_key) if x in features]
student_features = [x for x in features if x not in set(PROFILE_FEATURES) and 'meta.' not in x]
profile_features = [x for x in PROFILE_FEATURES if x in features]

if 'external_user_key' in features and len(students) > 0:
Expand Down