From 55c3e442ad4deba6338737b1cac116417dc07c85 Mon Sep 17 00:00:00 2001 From: Eddy Hintze Date: Sun, 19 Jan 2020 09:48:21 -0500 Subject: [PATCH] Keep __init__ empty --- humblebundle_downloader/__init__.py | 2 -- humblebundle_downloader/cli.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) 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,