This commit is contained in:
Paul Gauthier 2023-06-27 18:34:52 -07:00
parent e24d03060d
commit 582143d563
5 changed files with 193 additions and 2 deletions

View file

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