diff --git a/gbizinfo_lod/command.py b/gbizinfo_lod/command.py index 1df04d4..c1191f0 100644 --- a/gbizinfo_lod/command.py +++ b/gbizinfo_lod/command.py @@ -9,7 +9,6 @@ import click from . import __version__ from .client import GbizinfoClient from .mappers import * -from .mappers.todokede import GbizInfoTodokedeMapper @click.group() diff --git a/gbizinfo_lod/mappers/__init__.py b/gbizinfo_lod/mappers/__init__.py index c6b66b9..d5562ba 100644 --- a/gbizinfo_lod/mappers/__init__.py +++ b/gbizinfo_lod/mappers/__init__.py @@ -117,6 +117,7 @@ from .chotatsu import GbizInfoChotatsuMapper from .hojin import GbizInfoHojinMapper from .hojyokin import GbizInfoHojyokinMapper from .hyosho import GbizInfoHyoshoMapper +from .todokede import GbizInfoTodokedeMapper from .shokuba import GbizInfoShokubaMapper from .tokkyo import GbizInfoTokkyoMapper from .zaimu import GbizInfoZaimuMapper @@ -126,6 +127,7 @@ __all__ = [ "GbizInfoHojyokinMapper", "GbizInfoChotatsuMapper", "GbizInfoHyoshoMapper", + "GbizInfoTodokedeMapper", "GbizInfoTokkyoMapper", "GbizInfoShokubaMapper", "GbizInfoZaimuMapper",