Address lint errors for discogs_client version check

This commit is contained in:
ghbrown 2023-03-09 17:38:47 -06:00
parent 566a58c8bb
commit bad541e2c4

View file

@ -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.