From 9290eeea2c4532c3fccf0902a4503f8f89103b2d Mon Sep 17 00:00:00 2001 From: Thomas Bucaioni Date: Fri, 3 Dec 2021 10:34:14 +0100 Subject: [PATCH] Orchestration service - reunite class links (:class:) on one line Change-Id: I29930f630f417bd155bb9235e4d2799bddcacf61 --- openstack/orchestration/v1/_proxy.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/openstack/orchestration/v1/_proxy.py b/openstack/orchestration/v1/_proxy.py index 676db93bb..744961e0a 100644 --- a/openstack/orchestration/v1/_proxy.py +++ b/openstack/orchestration/v1/_proxy.py @@ -220,8 +220,7 @@ class Proxy(proxy.Proxy): :class:`~openstack.orchestration.v1.stack.Stack` :returns: One object of - :class:`~openstack.orchestration.v1.stack_environment.\ - StackEnvironment` + :class:`~openstack.orchestration.v1.stack_environment.StackEnvironment` :raises: :class:`~openstack.exceptions.ResourceNotFound` when no resource can be found. """ @@ -297,8 +296,8 @@ class Proxy(proxy.Proxy): :param dict query: Optional query parameters to be sent to limit the software configs returned. :returns: A generator of software config objects. - :rtype: :class:`~openstack.orchestration.v1.software_config.\ - SoftwareConfig` + :rtype: + :class:`~openstack.orchestration.v1.software_config.SoftwareConfig` """ return self._list(_sc.SoftwareConfig, **query) @@ -349,8 +348,8 @@ class Proxy(proxy.Proxy): :param dict query: Optional query parameters to be sent to limit the software deployments returned. :returns: A generator of software deployment objects. - :rtype: :class:`~openstack.orchestration.v1.software_deployment.\ - SoftwareDeployment` + :rtype: + :class:`~openstack.orchestration.v1.software_deployment.SoftwareDeployment` """ return self._list(_sd.SoftwareDeployment, **query) @@ -392,8 +391,8 @@ class Proxy(proxy.Proxy): represented by ``software_deployment``. :returns: The updated software deployment - :rtype: :class:`~openstack.orchestration.v1.software_deployment.\ - SoftwareDeployment` + :rtype: + :class:`~openstack.orchestration.v1.software_deployment.SoftwareDeployment` """ return self._update(_sd.SoftwareDeployment, software_deployment, **attrs)