Skip to content

Commit

Permalink
fixed errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat committed Nov 15, 2024
1 parent a34e800 commit 79d63cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/standard-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Run Pylint check
run: |
poetry run pylint --fail-under 10 --limit-inference-results 0 ./spotdl
poetry run pylint --fail-under 10 --limit-inference-results 0 --disable=R0917,W0511 ./spotdl
- name: Run MyPy check
run: |
Expand Down
2 changes: 1 addition & 1 deletion spotdl/console/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def sync(
if path != new_path:
to_rename.append((path, new_path))

# fixme Downloading duplicate songs in the same playlist
# fix later Downloading duplicate songs in the same playlist
# will trigger a re-download of the song. To fix this we have to copy the song
# to the new location without removing the old one.
for old_path, new_path in to_rename:
Expand Down

0 comments on commit 79d63cc

Please sign in to comment.