Skip to content

Commit

Permalink
Fix Commented-out code // by CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
dotX12 committed Apr 27, 2024
1 parent 39f52f8 commit 122e7dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/top_tracks_city.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ async def main():
serialized = Serialize.playlists(top_ten_moscow_tracks)
print(serialized)

# for element in top_ten_moscow_tracks["data"]:
# serialized = Serialize.playlist(data=element)
# print(serialized)
for element in top_ten_moscow_tracks["data"]:
serialized = Serialize.playlist(data=element)
print(serialized)


loop = asyncio.get_event_loop_policy().get_event_loop()
Expand Down

0 comments on commit 122e7dd

Please sign in to comment.