From 2459b6e1cf928f47b00c63cae23b4a10a912f44f Mon Sep 17 00:00:00 2001 From: Jody Bruchon Date: Fri, 18 Sep 2020 09:35:21 -0400 Subject: [PATCH] Style revisions --- youtube_dlc/YoutubeDL.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index fab56f2f8..0bdc98321 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -113,8 +113,9 @@ from .version import __version__ if compat_os_name == 'nt': import ctypes -# Archive tree + class ArchiveTree(object): + """Binary search tree for download archive entries""" def __init__(self, line): self.left = None self.right = None