diff --git a/humblebundle_downloader/__init__.py b/humblebundle_downloader/__init__.py index 013d107..e69de29 100644 --- a/humblebundle_downloader/__init__.py +++ b/humblebundle_downloader/__init__.py @@ -1,2 +0,0 @@ -from .generate_cookie import generate_cookie # noqa: F401 -from .download_library import download_library # noqa: F401 diff --git a/humblebundle_downloader/cli.py b/humblebundle_downloader/cli.py index 3ac1cbf..09d730f 100644 --- a/humblebundle_downloader/cli.py +++ b/humblebundle_downloader/cli.py @@ -57,11 +57,11 @@ def cli(): cli_args = parser.parse_args() if cli_args.action == 'gen-cookie': - from . import generate_cookie + from .generate_cookie import generate_cookie generate_cookie(cli_args.cookie_file) elif cli_args.action == 'download': - from . import download_library + from .download_library import download_library download_library( cli_args.cookie_file, cli_args.library_path,