Trying to add localization

This commit is contained in:
bacon
2024-03-09 17:04:18 +03:00
parent 75869de1cd
commit 3bd30239ae
4 changed files with 49 additions and 32 deletions

View File

@@ -5,6 +5,6 @@ from yandex_music import Client
client = Client(os.getenv('Yandex_Token')).init()
def _search(self, _str: str, _type: str):
def _search(_str: str, _type: str):
search_result = client.search(_str, type_=_type)
pass