refactor: xmodule/wrapper_module.py -> xmodule/wrapper_block.py

This commit is contained in:
0x29a
2022-10-26 21:09:36 +02:00
committed by Piotr Surowiec
parent 071b4ba1b4
commit 7fa5f3847b
2 changed files with 1 additions and 1 deletions

17
xmodule/wrapper_block.py Normal file
View 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