Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswittich committed Jan 31, 2024
1 parent 7958290 commit f1df2a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion learning_loop_node/trainer/trainer_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def node(self) -> 'TrainerNode':

@property
def is_initialized(self) -> bool:
"""_training and _active_training_io are set in 'init' or 'load_last_training'"""
"""_training and _active_training_io are set in 'init_new_training' or 'init_from_last_training'"""
return self._training is not None and self._active_training_io is not None and self._node is not None

def init_new_training(self, context: Context, details: Dict) -> None:
Expand Down

0 comments on commit f1df2a1

Please sign in to comment.