From da8feac7bd05652303b51ed623732273fd1a23e3 Mon Sep 17 00:00:00 2001 From: gadorlhiac Date: Fri, 24 May 2024 08:29:26 -0700 Subject: [PATCH] MNT Clean up comments --- lute/execution/executor.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lute/execution/executor.py b/lute/execution/executor.py index 4f1f3c00..b39a5f4c 100644 --- a/lute/execution/executor.py +++ b/lute/execution/executor.py @@ -33,7 +33,7 @@ import time import os import signal -from typing import Dict, Callable, List, Optional, Any, Union +from typing import Dict, Callable, List, Optional, Any from typing_extensions import Self from abc import ABC, abstractmethod import warnings @@ -416,15 +416,11 @@ def _set_result_from_parameters(self) -> None: # First try to set from result_from_params (faster) if self._analysis_desc.task_parameters.Config.result_from_params is not None: - # if hasattr(self._analysis_desc.task_parameters.Config, "result_from_params"): result_from_params: str = ( self._analysis_desc.task_parameters.Config.result_from_params ) logger.info(f"TaskResult specified as {result_from_params}.") self._analysis_desc.task_result.payload = result_from_params - # if isinstance(result_from_params, str) and result_from_params != "": - # logger.info(f"TaskResult specified as {result_from_params}.") - # self._analysis_desc.task_result.payload = result_from_params else: # Iterate parameters to find the one that is the result schema: Dict[str, Any] = self._analysis_desc.task_parameters.schema() @@ -454,7 +450,7 @@ def _set_result_from_parameters(self) -> None: ) ) # Now check for impl_schemas and pass to result.impl_schemas - # Only get to this point if set_result == True + # Currently unused impl_schemas: Optional[str] = ( self._analysis_desc.task_parameters.Config.impl_schemas ) @@ -624,7 +620,8 @@ def _process_results(self) -> None: """Performs result processing. Actions include: - - For `ElogSummaryPlots`, will save the summary plot to a + - For `ElogSummaryPlots`, will save the summary plot to the appropriate + directory for display in the eLog. """ task_result: TaskResult = self._analysis_desc.task_result self._process_result_payload(task_result.payload)