Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: remove SkillTaggingMixin from common XBLOCK_MIXINS #34530

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@
from openedx.core.lib.derived import derived, derived_collection_entry
from openedx.core.release import doc_version
from lms.djangoapps.lms_xblock.mixin import LmsBlockMixin
try:
from skill_tagging.skill_tagging_mixin import SkillTaggingMixin
except ImportError:
SkillTaggingMixin = None

################################### FEATURES ###################################
# .. setting_name: PLATFORM_NAME
Expand Down Expand Up @@ -1654,8 +1650,6 @@ def _make_mako_template_dirs(settings):
XModuleMixin,
EditInfoMixin,
)
if SkillTaggingMixin:
XBLOCK_MIXINS += (SkillTaggingMixin,)

# .. setting_name: XBLOCK_EXTRA_MIXINS
# .. setting_default: ()
Expand Down