From 6975aefb23847a9596b13c5131af1964967fd56f Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Sat, 15 Feb 2025 00:06:30 +0100 Subject: [PATCH] Removed unused failed flag in DLEntry --- syng/sources/source.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/syng/sources/source.py b/syng/sources/source.py index 666d290..e209682 100644 --- a/syng/sources/source.py +++ b/syng/sources/source.py @@ -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