From d091c7e5b4ddc2cccd311796b0e676e2b2187193 Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Tue, 11 Mar 2014 22:29:44 +0100 Subject: [PATCH] Remove unused plugin configure method --- beets/plugins.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/beets/plugins.py b/beets/plugins.py index 80bfae295..93ac055ef 100755 --- a/beets/plugins.py +++ b/beets/plugins.py @@ -86,12 +86,6 @@ class BeetsPlugin(object): """ return () - def configure(self, config): - """This method is called with the ConfigParser object after - the CLI starts up. - """ - pass - def item_fields(self): """Returns field descriptors to be added to the MediaFile class, in the form of a dictionary whose keys are field names and whose @@ -293,11 +287,6 @@ def track_for_id(track_id): out.append(res) return out -def configure(config): - """Sends the configuration object to each plugin.""" - for plugin in find_plugins(): - plugin.configure(config) - def template_funcs(): """Get all the template functions declared by plugins as a dictionary.