updated requirements.txt

This commit is contained in:
bacon
2024-03-10 16:38:04 +03:00
parent 4f54b29455
commit 4cea275a33

View File

@@ -52,13 +52,10 @@ def search(_str: str, _type: str = 'all') -> dict:
for i in best.artists:
artist_id = i.id
artist_name = i.name
_tracks
list[Track] = []
_tracks: list[Track] = []
tracks = {}
album = client.albums_with_tracks(best.id)
for i, volume in enumerate(album.volumes):
if len(album.volumes) > 1:
_tracks.append(f'💿 Диск {i + 1}')
_tracks += volume
_i = 1
for track in _tracks: