1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-06-30 11:02:54 -05:00

ExecAfterDownloadPP, YoutubeDL: remove unused parameters

This commit is contained in:
Jaime Marquínez Ferrándiz
2015-05-10 17:41:11 +02:00
parent 370b39e8ec
commit 95c5534f8e
3 changed files with 1 additions and 5 deletions

View File

@ -8,8 +8,7 @@ from ..utils import PostProcessingError
class ExecAfterDownloadPP(PostProcessor):
def __init__(self, downloader=None, verboseOutput=None, exec_cmd=None):
self.verboseOutput = verboseOutput
def __init__(self, downloader=None, exec_cmd=None):
self.exec_cmd = exec_cmd
def run(self, information):