From 4c6d966038535beb5d5fe74e334f197ad09c157a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Thu, 19 Oct 2023 12:13:08 +0200 Subject: [PATCH] [Doc fix] Fixed indent in the documentation of the `application.install` action. --- platypush/plugins/application/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platypush/plugins/application/__init__.py b/platypush/plugins/application/__init__.py index 94a74691..85030fbf 100644 --- a/platypush/plugins/application/__init__.py +++ b/platypush/plugins/application/__init__.py @@ -44,8 +44,9 @@ class ApplicationPlugin(Plugin): Install the dependencies of an extension. :param extension: Extension name. For plugins, it will be the plugin - name (e.g. ``light.hue`` or ``music.mpd``); for backend, the name will - be prefixed by ``backend.`` (e.g. ``backend.http`` or ``backend.tcp``). + name (e.g. ``light.hue`` or ``music.mpd``); for backend, the name + will be prefixed by ``backend.`` (e.g. ``backend.http`` or + ``backend.tcp``). """ getter = get_plugin_class_by_name if extension.startswith('backend.'):