From 8c65f34d01fe5d2c15f796d6949c65067edd8ed7 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 26 Apr 2013 22:10:13 +0200 Subject: [PATCH] docs: Make it explicit who starts the extension actors --- mopidy/ext.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mopidy/ext.py b/mopidy/ext.py index 64a71256..d7c5c96f 100644 --- a/mopidy/ext.py +++ b/mopidy/ext.py @@ -62,14 +62,18 @@ class Extension(object): pass def get_frontend_classes(self): - """List of frontend actor classes to start + """List of frontend actor classes + + Mopidy will take care of starting the actors. :returns: list of :class:`pykka.Actor` subclasses """ return [] def get_backend_classes(self): - """List of backend actor classes to start + """List of backend actor classes + + Mopidy will take care of starting the actors. :returns: list of :class:`~mopidy.backends.base.Backend` subclasses """