This reverts commit af4e7a348a.
After merging the above commit, I was seeing 'internal-error's
on Stage in responses to the Registrar API. I am temporarily
reverting it until I can figure out a fix.
12 lines
428 B
Python
12 lines
428 B
Python
"""
|
|
Python API exposed by the proram_enrollments app to other in-process apps.
|
|
|
|
The functions are split into separate files for code organization, but they
|
|
are wildcard-imported into here so they can be imported directly from
|
|
`lms.djangoapps.program_enrollments.api`.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from .linking import * # pylint: disable=wildcard-import
|
|
from .reading import * # pylint: disable=wildcard-import
|