[pr0gramm]: add trailing comma to lists for maintainability

This commit is contained in:
Leonetienne 2023-01-12 22:07:43 +01:00
commit 835464e091
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -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,
) )

View file

@ -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,
} }
} }