Skip to content

Commit

Permalink
🐛 Fix typing of 'proxies' to indicate the parameter is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
g3nsy committed Apr 28, 2024
1 parent 7501c34 commit c4a6662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion innertube/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(
referer: Optional[str] = None,
locale: Optional[Locale] = None,
auto: bool = True,
proxies: ProxiesTypes = None,
proxies: Optional[ProxiesTypes] = None,
) -> None:
if client_name is None:
raise ValueError("Precondition failed: Missing client name")
Expand Down

0 comments on commit c4a6662

Please sign in to comment.