Skip to content

Commit 189aa81

Browse files
committed
format: formatted files
1 parent 19dea7e commit 189aa81

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

aw_watcher_spotify/main.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def auth(username: str, client_id: str, client_secret: str) -> Spotify:
6565
client_secret=client_secret,
6666
redirect_uri="http://127.0.0.1:8088",
6767
scope=scope,
68-
cache_path=f".cache-{username}"
68+
cache_path=f".cache-{username}",
6969
)
7070
return Spotify(auth_manager=auth_manager)
7171
except SpotifyOauthError as e:
@@ -93,11 +93,11 @@ def main():
9393
argparser.add_argument("--verbose", action="store_true")
9494
args = argparser.parse_args()
9595
setup_logging(
96-
name="aw-watcher-spotify",
97-
testing=args.testing,
98-
verbose=args.verbose,
99-
log_stderr=True,
100-
log_file=True,
96+
name="aw-watcher-spotify",
97+
testing=args.testing,
98+
verbose=args.verbose,
99+
log_stderr=True,
100+
log_file=True,
101101
)
102102
config_dir = dirs.get_config_dir("aw-watcher-spotify")
103103

0 commit comments

Comments
 (0)