Skip to content

Commit

Permalink
Lint with pylint & black
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverarmor committed Aug 23, 2022
1 parent 9a69845 commit 26e3dee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion spotdl/console/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ def download(
if save_path:
# Save the songs to a file
with open(save_path, "w", encoding="utf-8") as save_file:
json.dump([song.json for song in songs], save_file, indent=4, ensure_ascii=False)
json.dump(
[song.json for song in songs], save_file, indent=4, ensure_ascii=False
)
1 change: 0 additions & 1 deletion spotdl/utils/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ def parse_spotify_options(parser: _ArgumentGroup):
# Add auth token argument
parser.add_argument(
"--auth-token",
default=DEFAULT_CONFIG["auth_token"],
help="The authorisation token to use directly to log in to Spotify.",
)

Expand Down

0 comments on commit 26e3dee

Please sign in to comment.