mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[cleanup] Upgrade syntax
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
This commit is contained in:
		| @@ -1,8 +1,4 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # coding: utf-8 | ||||
| 
 | ||||
| from __future__ import unicode_literals | ||||
| 
 | ||||
| import unittest | ||||
| 
 | ||||
| import sys | ||||
| @@ -45,7 +41,7 @@ class TestExecution(unittest.TestCase): | ||||
|         finally: | ||||
|             try: | ||||
|                 os.remove('yt_dlp/extractor/lazy_extractors.py') | ||||
|             except (IOError, OSError): | ||||
|             except OSError: | ||||
|                 pass | ||||
| 
 | ||||
| 
 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan