1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 10:29:28 +00:00

[infomaniak] More maintainable imports

This commit is contained in:
Ishab Ahmed 2023-04-02 13:19:47 +01:00
parent 25e5bcfb1d
commit 6b07fba61b

View file

@ -2,7 +2,11 @@
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import traverse_obj, int_or_none, url_or_none
from ..utils import (
traverse_obj,
int_or_none,
url_or_none,
)
class InfomaniakVOD2IE(InfoExtractor):