We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1488078 commit bf91a90Copy full SHA for bf91a90
src/ghga_connector/core/downloading/abstract_downloader.py
src/ghga_connector/core/downloading/downloader.py
@@ -38,7 +38,6 @@
38
from ghga_connector.core.tasks import TaskHandler
39
40
from ..progress_bar import DownloadProgressBar
41
-from .abstract_downloader import DownloaderBase
42
from .api_calls import (
43
get_download_url,
44
get_envelope_authorization,
@@ -49,8 +48,9 @@
49
48
logger = logging.getLogger(__name__)
50
51
52
-class Downloader(DownloaderBase):
53
- """Centralized high-level interface for download functionality. Used in the core.
+class Downloader:
+ """Centralized high-level interface for downloading a single file.
+
54
This is not meant to be reused, as internal state is not cleared.
55
"""
56
0 commit comments