From 82235a0da59c4a8cee70828d5ea69f87fdf80662 Mon Sep 17 00:00:00 2001 From: Babibubebon Date: Tue, 18 Jun 2024 03:17:57 +0900 Subject: [PATCH] Fix imports --- gbizinfo_lod/command.py | 1 - gbizinfo_lod/mappers/__init__.py | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) 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",