- Moving xmodule folder to root as we're dissolving sub-projects of common folder in edx-platform
- More info: https://openedx.atlassian.net/browse/BOM-2579
- -e common/lib/xmodule has been removed from the requirements as xmodule has itself become the part of edx-platform and not being installed through requirements
- The test files common/lib/xmodule/test_files/ have been removed as they are not being used anymore
18 lines
481 B
Python
18 lines
481 B
Python
# lint-amnesty, pylint: disable=missing-module-docstring
|
|
# Same as vertical,
|
|
# But w/o css delimiters between children
|
|
|
|
|
|
from xmodule.vertical_block import VerticalBlock
|
|
|
|
# HACK: This shouldn't be hard-coded to two types
|
|
# OBSOLETE: This obsoletes 'type'
|
|
class_priority = ['video', 'problem']
|
|
|
|
|
|
class WrapperBlock(VerticalBlock):
|
|
'''
|
|
Layout block for laying out sub-blocks vertically *w/o* css delimiters.
|
|
'''
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|