Skip to content

Commit

Permalink
Fix EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
7x11x13 committed Jul 9, 2024
1 parent 331711a commit 1592841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scdl/scdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,8 @@ def download_url(client: SoundCloud, kwargs: SCDLArgs) -> None:
items = client.get_user_stream(user.id, limit=1000)
for i, stream_item in itertools.islice(enumerate(items, 1), offset, None):
logger.info(
f"item n°{i} of {user.track_count + user.reposts_count
if user.reposts_count else '?'}",
f"item n°{i} of "
f"{user.track_count + user.reposts_count if user.reposts_count else '?'}",
)
if isinstance(stream_item, (TrackStreamItem, TrackStreamRepostItem)):
download_track(
Expand Down

0 comments on commit 1592841

Please sign in to comment.