renamed func -> wholefile_func

This commit is contained in:
Paul Gauthier 2023-06-22 08:15:20 -07:00
parent fa1158d8a8
commit 985e362544
4 changed files with 10 additions and 9 deletions

View file

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