diff options
author | Jody Bruchon <jody@jodybruchon.com> | 2020-09-18 09:35:21 -0400 |
---|---|---|
committer | Jody Bruchon <jody@jodybruchon.com> | 2020-09-18 09:35:21 -0400 |
commit | 2459b6e1cf928f47b00c63cae23b4a10a912f44f (patch) | |
tree | e64dabdc8bec5222c2e18d7eecf4106b5bb593c6 | |
parent | 4f0150dcec4450dea039c5697282f0552bab3fa6 (diff) | |
download | hypervideo-pre-2459b6e1cf928f47b00c63cae23b4a10a912f44f.tar.lz hypervideo-pre-2459b6e1cf928f47b00c63cae23b4a10a912f44f.tar.xz hypervideo-pre-2459b6e1cf928f47b00c63cae23b4a10a912f44f.zip |
Style revisions
-rw-r--r-- | youtube_dlc/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |