Skip to content

Commit

Permalink
add short type to parse_youtube_url in pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Christensen committed Feb 29, 2024
1 parent 736221f commit fe88355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ural/youtube.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ def is_youtube_video_id(value: str) -> bool: ...
def is_youtube_channel_id(value: str) -> bool: ...
def parse_youtube_url(
url: AnyUrlTarget, fix_common_mistakes: bool = ...
) -> Optional[Union[YoutubeVideo, YoutubeUser, YoutubeChannel]]: ...
) -> Optional[Union[YoutubeVideo, YoutubeUser, YoutubeChannel, YoutubeShort]]: ...
def extract_video_id_from_youtube_url(url: AnyUrlTarget) -> Optional[str]: ...
def normalize_youtube_url(url: AnyUrlTarget) -> str: ...

0 comments on commit fe88355

Please sign in to comment.