Fix imports

This commit is contained in:
Babibubebon 2024-06-18 03:17:57 +09:00
parent f07025b21d
commit 82235a0da5
Signed by: Babibubebon
GPG key ID: 78C8FB2A2FEA1EE3
2 changed files with 2 additions and 1 deletions

View file

@ -9,7 +9,6 @@ import click
from . import __version__ from . import __version__
from .client import GbizinfoClient from .client import GbizinfoClient
from .mappers import * from .mappers import *
from .mappers.todokede import GbizInfoTodokedeMapper
@click.group() @click.group()

View file

@ -117,6 +117,7 @@ from .chotatsu import GbizInfoChotatsuMapper
from .hojin import GbizInfoHojinMapper from .hojin import GbizInfoHojinMapper
from .hojyokin import GbizInfoHojyokinMapper from .hojyokin import GbizInfoHojyokinMapper
from .hyosho import GbizInfoHyoshoMapper from .hyosho import GbizInfoHyoshoMapper
from .todokede import GbizInfoTodokedeMapper
from .shokuba import GbizInfoShokubaMapper from .shokuba import GbizInfoShokubaMapper
from .tokkyo import GbizInfoTokkyoMapper from .tokkyo import GbizInfoTokkyoMapper
from .zaimu import GbizInfoZaimuMapper from .zaimu import GbizInfoZaimuMapper
@ -126,6 +127,7 @@ __all__ = [
"GbizInfoHojyokinMapper", "GbizInfoHojyokinMapper",
"GbizInfoChotatsuMapper", "GbizInfoChotatsuMapper",
"GbizInfoHyoshoMapper", "GbizInfoHyoshoMapper",
"GbizInfoTodokedeMapper",
"GbizInfoTokkyoMapper", "GbizInfoTokkyoMapper",
"GbizInfoShokubaMapper", "GbizInfoShokubaMapper",
"GbizInfoZaimuMapper", "GbizInfoZaimuMapper",