Skip to content

Commit

Permalink
🐛 Fix typing of 'input' to indicate the parameter is of type str. (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
g3nsy authored May 9, 2024
1 parent b26c963 commit 43979d0
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 @@ -170,7 +170,7 @@ def get_transcript(

def music_get_search_suggestions(
self,
input: Optional[None] = None,
input: Optional[str] = None,
) -> dict:
return self(
Endpoint.MUSIC_GET_SEARCH_SUGGESTIONS,
Expand Down

0 comments on commit 43979d0

Please sign in to comment.