6 lines
199 B
Python
6 lines
199 B
Python
#pylint: disable=missing-docstring
|
|
import warnings
|
|
|
|
if __name__ == 'courseware':
|
|
warnings.warn("Importing 'lms.djangoapps.courseware' as 'courseware' is no longer supported", DeprecationWarning)
|