Skip to content

Commit dade1c7

Browse files
committed
Add two missing fields
1 parent 6ae6bad commit dade1c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

stubs/yt-dlp/yt_dlp/extractor/common.pyi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ from typing_extensions import Never, Required, TypeAlias, deprecated
88
from urllib.request import Request, _DataType
99
from xml.etree import ElementTree as ET
1010

11+
from yt_dlp.utils import PagedList
12+
1113
from ..cache import Cache
1214
from ..cookies import LenientSimpleCookie, YoutubeDLCookieJar
1315
from ..networking.common import Response, _RequestData
@@ -103,6 +105,8 @@ class _InfoDict(TypedDict, total=False):
103105
section_end: Incomplete
104106
rows: int | None
105107
columns: int | None
108+
playlist_count: int | None
109+
entries: Iterable[_InfoDict] | PagedList | None
106110
requested_formats: Iterable[_InfoDict]
107111
# deprecated fields:
108112
composer: Incomplete

0 commit comments

Comments
 (0)