Removed unused failed flag in DLEntry

This commit is contained in:
Christoph Stahl 2025-02-15 00:06:30 +01:00
parent 57fab12f4e
commit 6975aefb23

View file

@ -48,9 +48,6 @@ class DLFilesEntry:
:param complete: True if download was completed, False otherwise (Default :param complete: True if download was completed, False otherwise (Default
is ``False``) is ``False``)
:type complete: bool :type complete: bool
:param failed: True if the buffering failed, False otherwise (Default is
``False``)
:type failed: bool
:param skip: True if the next Entry for this file should be skipped :param skip: True if the next Entry for this file should be skipped
(Default is ``False``) (Default is ``False``)
:param buffer_task: Reference to the task, that downloads the files. :param buffer_task: Reference to the task, that downloads the files.
@ -64,7 +61,6 @@ class DLFilesEntry:
audio: Optional[str] = None audio: Optional[str] = None
buffering: bool = False buffering: bool = False
complete: bool = False complete: bool = False
failed: bool = False
skip: bool = False skip: bool = False
buffer_task: Optional[asyncio.Task[Tuple[str, Optional[str]]]] = None buffer_task: Optional[asyncio.Task[Tuple[str, Optional[str]]]] = None