Fix lints in tests (#682)

* Fix lints on tests

* Formatting

* Formatting
This commit is contained in:
Nathan Thomas 2024-05-14 16:27:41 -07:00 committed by GitHub
parent 178168cc68
commit 54d05e1330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 50 additions and 50 deletions

View file

@ -1,6 +1,6 @@
import json
from streamrip.metadata import *
from streamrip.metadata import AlbumMetadata, TrackMetadata
with open("tests/qobuz_album_resp.json") as f:
qobuz_album_resp = json.load(f)
@ -16,7 +16,7 @@ def test_album_metadata_qobuz():
assert info.quality == 3
assert info.container == "FLAC"
assert info.label == "Rhino - Warner Records"
assert info.explicit == False
assert info.explicit is False
assert info.sampling_rate == 96
assert info.bit_depth == 24
assert info.booklets is None