From d2ad8b8b0fae009593db4b243e9d0ebd5321f3a4 Mon Sep 17 00:00:00 2001 From: Hunter McGushion Date: Tue, 20 Oct 2020 16:16:33 -0700 Subject: [PATCH] Fix docstring indentation --- hyperparameter_hunter/i_o/recorders.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hyperparameter_hunter/i_o/recorders.py b/hyperparameter_hunter/i_o/recorders.py index cd982f53..1bb5811d 100644 --- a/hyperparameter_hunter/i_o/recorders.py +++ b/hyperparameter_hunter/i_o/recorders.py @@ -90,10 +90,10 @@ def result_path_key(self) -> str: @abstractmethod def required_attributes(self) -> list: """Return attributes of the current Experiment that are necessary to properly record result. - Specifically, `BaseRecorder` fetches the attrs via :class:`settings.G.Env.current_task`, - which can also be regarded as :class:`environment.Environment.current_task`, but this is - an implementation detail. It is simpler to use :class:`experiments.BaseExperiment`, and its - appropriate descendants as a reference for acceptable values of `required_attributes`""" + Specifically, `BaseRecorder` fetches the attrs via :class:`settings.G.Env.current_task`, + which can also be regarded as :class:`environment.Environment.current_task`, but this is + an implementation detail. It is simpler to use :class:`experiments.BaseExperiment`, and its + appropriate descendants as a reference for acceptable values of `required_attributes`""" @abstractmethod def format_result(self):