Remove unused plugin configure method

This commit is contained in:
Thomas Scholtes 2014-03-11 22:29:44 +01:00
parent 4205d1a7b9
commit d091c7e5b4

View file

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