mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 00:53:08 +01:00
Address lint errors for discogs_client version check
This commit is contained in:
parent
566a58c8bb
commit
bad541e2c4
1 changed files with 4 additions and 3 deletions
|
|
@ -78,7 +78,8 @@ class DiscogsPlugin(BeetsPlugin):
|
||||||
zip(dc_version[:min_len],
|
zip(dc_version[:min_len],
|
||||||
dc_min_version[:min_len])]
|
dc_min_version[:min_len])]
|
||||||
if True not in gt_min:
|
if True not in gt_min:
|
||||||
self._log.warning("python3-discogs-client version should be >= 2.3.10")
|
self._log.warning(('python3-discogs-client version should be '
|
||||||
|
'>= 2.3.10'))
|
||||||
|
|
||||||
def setup(self, session=None):
|
def setup(self, session=None):
|
||||||
"""Create the `discogs_client` field. Authenticate if necessary.
|
"""Create the `discogs_client` field. Authenticate if necessary.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue