mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:47:07 -05:00 
			
		
		
		
	remove unused imports
This commit is contained in:
		@@ -306,7 +306,7 @@ def workaround_optparse_bug9161():
 | 
				
			|||||||
    og = optparse.OptionGroup(op, 'foo')
 | 
					    og = optparse.OptionGroup(op, 'foo')
 | 
				
			||||||
    try:
 | 
					    try:
 | 
				
			||||||
        og.add_option('-t')
 | 
					        og.add_option('-t')
 | 
				
			||||||
    except TypeError as te:
 | 
					    except TypeError:
 | 
				
			||||||
        real_add_option = optparse.OptionGroup.add_option
 | 
					        real_add_option = optparse.OptionGroup.add_option
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        def _compat_add_option(self, *args, **kwargs):
 | 
					        def _compat_add_option(self, *args, **kwargs):
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@ import re
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    ExtractorError,
 | 
					 | 
				
			||||||
    find_xpath_attr,
 | 
					    find_xpath_attr,
 | 
				
			||||||
    unified_strdate,
 | 
					    unified_strdate,
 | 
				
			||||||
    get_element_by_id,
 | 
					    get_element_by_id,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,6 @@ from __future__ import unicode_literals
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					 | 
				
			||||||
from .mtv import MTVServicesInfoExtractor
 | 
					from .mtv import MTVServicesInfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    compat_str,
 | 
					    compat_str,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,9 +1,7 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    parse_duration,
 | 
					 | 
				
			||||||
    int_or_none,
 | 
					    int_or_none,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user