singlewholefile-func

This commit is contained in:
Paul Gauthier 2023-06-29 18:13:42 -07:00
parent 271807123a
commit ddac41f106
4 changed files with 158 additions and 1 deletions

View file

@ -1,7 +1,15 @@
from .base_coder import Coder
from .editblock_coder import EditBlockCoder
from .editblock_func_coder import EditBlockFunctionCoder
from .single_wholefile_func_coder import SingleWholeFileFunctionCoder
from .wholefile_coder import WholeFileCoder
from .wholefile_func_coder import WholeFileFunctionCoder
__all__ = [Coder, EditBlockCoder, WholeFileCoder, WholeFileFunctionCoder, EditBlockFunctionCoder]
__all__ = [
Coder,
EditBlockCoder,
WholeFileCoder,
WholeFileFunctionCoder,
EditBlockFunctionCoder,
SingleWholeFileFunctionCoder,
]