From 70485a977e462062bf9acdc1e8e8808ba18ac741 Mon Sep 17 00:00:00 2001 From: dnuka Date: Thu, 17 Jan 2019 19:10:22 +0530 Subject: [PATCH] Update the docstring of `sub_processors()` A follow up patch to Change-Id I479bc18f79c6c51644115671ef68a879a94d102e Change-Id: Iccd414e3b92d9b03eaec8ec3ac511a10171bd617 --- sushy/resources/system/processor.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sushy/resources/system/processor.py b/sushy/resources/system/processor.py index a8ea3858..efd335c3 100644 --- a/sushy/resources/system/processor.py +++ b/sushy/resources/system/processor.py @@ -113,11 +113,7 @@ class Processor(base.ResourceBase): @property @utils.cache_it def sub_processors(self): - """A reference to - - the collection of Sub-Processors associated with - this system, such as cores or threads that are part of a processor. - """ + """A reference to the collection of Sub-Processors""" return ProcessorCollection( self.conn, self._get_processor_collection_path, redfish_version=self.redfish_version)