mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[ie, cleanup] No from stdlib imports in extractors (#8978)
				
					
				
			This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| from uuid import uuid4 | ||||
| import json | ||||
| import uuid | ||||
| 
 | ||||
| from .common import InfoExtractor | ||||
| from ..utils import ( | ||||
| @@ -51,7 +51,7 @@ class PolsatGoIE(InfoExtractor): | ||||
|         } | ||||
| 
 | ||||
|     def _call_api(self, endpoint, media_id, method, params): | ||||
|         rand_uuid = str(uuid4()) | ||||
|         rand_uuid = str(uuid.uuid4()) | ||||
|         res = self._download_json( | ||||
|             f'https://b2c-mobile.redefine.pl/rpc/{endpoint}/', media_id, | ||||
|             note=f'Downloading {method} JSON metadata', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan