diff --git a/lms/djangoapps/discussion/toggles_utils.py b/lms/djangoapps/discussion/toggles_utils.py index 10ba260d8117..56d2b3aacddc 100644 --- a/lms/djangoapps/discussion/toggles_utils.py +++ b/lms/djangoapps/discussion/toggles_utils.py @@ -1,7 +1,6 @@ """ Utils for Discussions feature toggles """ -from lms.djangoapps.discussion.toggles import ENABLE_DISCUSSIONS_MFE from openedx.core.djangoapps.django_comment_common.models import CourseDiscussionSettings @@ -10,5 +9,4 @@ def reported_content_email_notification_enabled(course_key): Checks for relevant flag and setting and returns boolean for reported content email notification for course """ - return bool(ENABLE_DISCUSSIONS_MFE.is_enabled(course_key) and - CourseDiscussionSettings.get(course_key).reported_content_email_notifications) + return CourseDiscussionSettings.get(course_key).reported_content_email_notifications