* reword INCR-483: Make compatible with Python 3.x without breaking Python 2.7 support pick INCR-483: Re-run isort for lms/envs/test.py INCR-483: change import order INCR-483: PyLint fixes * INCR-483: Fixes useless suppression * INCR-483: Remove unused get_swagger_view
22 lines
549 B
Python
22 lines
549 B
Python
"""
|
|
Module for code that should run during LMS startup (deprecated)
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import django
|
|
from django.conf import settings
|
|
|
|
# Force settings to run so that the python path is modified
|
|
settings.INSTALLED_APPS # pylint: disable=pointless-statement
|
|
|
|
|
|
def run():
|
|
"""
|
|
Executed during django startup
|
|
|
|
NOTE: DO **NOT** add additional code to this method or this file! The Platform Team
|
|
is moving all startup code to more standard locations using Django best practices.
|
|
"""
|
|
django.setup()
|