From b34479a03779846bb410d7fccf01eada71f4526a Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sun, 6 Mar 2022 15:28:16 +0800 Subject: [PATCH] mgr/cephadm: use block quote for "typical use" otherwise sphinx takes "Typical use" and the following line as a field. see also https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#field-lists Signed-off-by: Kefu Chai (cherry picked from commit 05798f0cae9afda598f5a154c62fdd24bab9ca30) --- src/pybind/mgr/orchestrator/_interface.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/pybind/mgr/orchestrator/_interface.py b/src/pybind/mgr/orchestrator/_interface.py index 4248205f0a472..5deb8f45b689e 100644 --- a/src/pybind/mgr/orchestrator/_interface.py +++ b/src/pybind/mgr/orchestrator/_interface.py @@ -1472,13 +1472,14 @@ class InventoryFilter(object): When fetching inventory, use this filter to avoid unnecessarily scanning the whole estate. - Typical use: filter by host when presenting UI workflow for configuring - a particular server. - filter by label when not all of estate is Ceph servers, - and we want to only learn about the Ceph servers. - filter by label when we are interested particularly - in e.g. OSD servers. - + Typical use: + + filter by host when presentig UI workflow for configuring + a particular server. + filter by label when not all of estate is Ceph servers, + and we want to only learn about the Ceph servers. + filter by label when we are interested particularly + in e.g. OSD servers. """ def __init__(self, labels: Optional[List[str]] = None, hosts: Optional[List[str]] = None) -> None: -- 2.39.5