refactor: xmodule/wrapper_module.py -> xmodule/wrapper_block.py
This commit is contained in:
17
xmodule/wrapper_block.py
Normal file
17
xmodule/wrapper_block.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user