mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-23 06:35:51 -07:00
[pr0gramm]: add trailing comma to lists for maintainability
This commit is contained in:
parent
e21d7c7a41
commit
835464e091
2 changed files with 4 additions and 4 deletions
|
@ -1669,5 +1669,5 @@ from .zoom import ZoomIE
|
||||||
from .zype import ZypeIE
|
from .zype import ZypeIE
|
||||||
from .pr0gramm import (
|
from .pr0gramm import (
|
||||||
Pr0grammIE,
|
Pr0grammIE,
|
||||||
Pr0grammStaticIE
|
Pr0grammStaticIE,
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,7 +6,7 @@ from .common import InfoExtractor
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import re
|
import re
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
merge_dicts
|
merge_dicts,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ class Pr0grammStaticIE(InfoExtractor):
|
||||||
'upload_date': '20221221',
|
'upload_date': '20221221',
|
||||||
'release_date': '20221221',
|
'release_date': '20221221',
|
||||||
'timestamp': 1671580800,
|
'timestamp': 1671580800,
|
||||||
'release_timestamp': 1671580800
|
'release_timestamp': 1671580800,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ class Pr0grammIE(InfoExtractor):
|
||||||
'upload_date': '20221221',
|
'upload_date': '20221221',
|
||||||
'release_date': '20221221',
|
'release_date': '20221221',
|
||||||
'timestamp': 1671580800,
|
'timestamp': 1671580800,
|
||||||
'release_timestamp': 1671580800
|
'release_timestamp': 1671580800,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue