Files
edx-platform/xmodule/edxnotes_utils.py
2022-06-20 18:20:06 +05:00

18 lines
334 B
Python

"""
Utilities related to edXNotes.
"""
import sys
def edxnotes(cls):
"""
Conditional decorator that loads edxnotes only when they exist.
"""
if "lms.djangoapps.edxnotes" in sys.modules:
from lms.djangoapps.edxnotes.decorators import edxnotes as notes
return notes(cls)
else:
return cls