Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Nov 29, 2023
1 parent 8b6d650 commit efc9416
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/test_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ def test_track_streaming(session):
track = session.track(62392768)
stream = track.stream()
assert stream.audio_mode == "STEREO"
assert stream.audio_quality == tidalapi.Quality.low_320k.value # i.e. the default quality for the current session
assert (
stream.audio_quality == tidalapi.Quality.low_320k.value
) # i.e. the default quality for the current session


def test_video(session):
Expand Down
4 changes: 3 additions & 1 deletion tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ def test_invalid_search(session):

def test_config(session):
assert session.config.item_limit == 1000
assert session.config.quality == tidalapi.Quality.low_320k.value # i.e. the default quality for the current session
assert (
session.config.quality == tidalapi.Quality.low_320k.value
) # i.e. the default quality for the current session
assert session.config.video_quality == tidalapi.VideoQuality.high.value
assert session.config.alac is True

Expand Down

0 comments on commit efc9416

Please sign in to comment.