]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/rtp.py
[cleanup] Add more ruff rules (#10149)
[yt-dlp.git] / yt_dlp / extractor / rtp.py
index ec78d0a669414a48453bd4943c00c4645272210c..944e8636abcef91376bae3003e13b58c7ebb1f74 100644 (file)
@@ -35,7 +35,7 @@ def __unobfuscate(self, data, *, video_id):
             data = self._RX_OBFUSCATION.sub(
                 lambda m: json.dumps(
                     base64.b64decode(urllib.parse.unquote(
-                        ''.join(self._parse_json(m.group(1), video_id))
+                        ''.join(self._parse_json(m.group(1), video_id)),
                     )).decode('iso-8859-1')),
                 data)
         return js_to_json(data)