From 7ec1fc934be53d88e20150f9a9aa320a7a8d1cee Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 10 Jun 2019 15:54:19 +0200 Subject: [PATCH] removing unneeded condition --- beetsplug/discogs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index bdc2154de..f6197ddba 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -351,8 +351,6 @@ class DiscogsPlugin(BeetsPlugin): def format_style(self, style): if style is None: self._log.debug('Style not Found') - elif not style: - return style else: return self.config['separator'].as_str().join(sorted(style))