removing unneeded condition

This commit is contained in:
Peter 2019-06-10 15:54:19 +02:00
parent 9bdadc5c73
commit 7ec1fc934b

View file

@ -351,8 +351,6 @@ class DiscogsPlugin(BeetsPlugin):
def format_style(self, style): def format_style(self, style):
if style is None: if style is None:
self._log.debug('Style not Found') self._log.debug('Style not Found')
elif not style:
return style
else: else:
return self.config['separator'].as_str().join(sorted(style)) return self.config['separator'].as_str().join(sorted(style))