From 3979619f9f94be85fbf1ccf5300bb9c6da3b5a96 Mon Sep 17 00:00:00 2001 From: "nathdwek@laptop" Date: Mon, 31 Oct 2016 18:52:35 +0100 Subject: [PATCH] acousticbrainz: remove redundant comments --- beetsplug/acousticbrainz.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/beetsplug/acousticbrainz.py b/beetsplug/acousticbrainz.py index 26e001d16..5223602a1 100644 --- a/beetsplug/acousticbrainz.py +++ b/beetsplug/acousticbrainz.py @@ -159,14 +159,12 @@ class AcousticPlugin(plugins.BeetsPlugin): self._log.info(u'getting data for: {}', item) data = self._get_data(item.mb_trackid) if data: - # Get each field and assign it on the item. for attr, val in self._map_dict_to_scheme(data, ABSCHEME): self._log.debug(u'attribute {} of {} set to {}', attr, item, val) setattr(item, attr, val) - # Store the data. item.store() if write: item.try_write()