This commit is contained in:
Paul Gauthier 2023-06-20 16:47:37 -07:00
parent bc38fcde65
commit 02c9a30c45
4 changed files with 25 additions and 12 deletions

View file

@ -1,3 +1,5 @@
from .base import Coder
from .editblock import EditBlockCoder
from .wholefile import WholeFileCoder
__all__ = [Coder]
__all__ = [Coder, EditBlockCoder, WholeFileCoder]