Removed unused failed flag in DLEntry
This commit is contained in:
parent
57fab12f4e
commit
6975aefb23
1 changed files with 0 additions and 4 deletions
|
@ -48,9 +48,6 @@ class DLFilesEntry:
|
|||
:param complete: True if download was completed, False otherwise (Default
|
||||
is ``False``)
|
||||
: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
|
||||
(Default is ``False``)
|
||||
:param buffer_task: Reference to the task, that downloads the files.
|
||||
|
@ -64,7 +61,6 @@ class DLFilesEntry:
|
|||
audio: Optional[str] = None
|
||||
buffering: bool = False
|
||||
complete: bool = False
|
||||
failed: bool = False
|
||||
skip: bool = False
|
||||
buffer_task: Optional[asyncio.Task[Tuple[str, Optional[str]]]] = None
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue