mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 20:13:37 +01:00
Remove unused plugin configure method
This commit is contained in:
parent
4205d1a7b9
commit
d091c7e5b4
1 changed files with 0 additions and 11 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue