Skip to content

Commit

Permalink
Merge pull request #107 from shazamio/dev2.0_fix_code_ql
Browse files Browse the repository at this point in the history
Fix Commented-out code // by CodeQL
  • Loading branch information
dotX12 authored Apr 27, 2024
2 parents f18467a + 122e7dd commit ff0494c
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 ff0494c

Please sign in to comment.