diff --git a/CHANGELOG.rst b/CHANGELOG.rst index efc7392b..02221fb8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,7 @@ Release Notes Forthcoming ----------- * [tests] mypy conformance, `#327 `_ +* [composites] show ghost states for sequence children, `#330 `_ (reverts behaviour introduced in `#325 `_) 2.1.5 (2021-05-09) ------------------ diff --git a/py_trees/composites.py b/py_trees/composites.py index 727d55bd..5c096e53 100644 --- a/py_trees/composites.py +++ b/py_trees/composites.py @@ -442,10 +442,6 @@ def tick(self): self.initialise() else: # self.memory is True and status is RUNNING index = self.children.index(self.current_child) - # clear out preceding status' - not actually necessary but helps - # visualise the case of memory vs no memory - for child in itertools.islice(self.children, None, index): - child.stop(common.Status.INVALID) # customised work self.update()