[docs]classDummyMuscle(Muscle):"""Implements the simples possible Muscle. This Muscle implementation simply samples the action spaces of all actuators connected to it. If the additional mode ``count_upwards`` is set, then all :class:`Discrete` action spaces receive upwards counting values (modulo the space dimension). The latter mode exists as convience for testing purposes. Parameters ---------- count_upwards : bool, default: False Enables upward counting modulo action space for :class:`Discrete` actuators. """def__init__(self,count_upwards:bool=False):super().__init__()self.iter=-1self.count_upwards=count_upwards