Abstract method head for ``step()``. :param a: Integer action to take in environment.
(self, a: int)
| 18 | |
| 19 | @abstractmethod |
| 20 | def step(self, a: int) -> Tuple[Any, ...]: |
| 21 | # language=rst |
| 22 | """ |
| 23 | Abstract method head for ``step()``. |
| 24 | |
| 25 | :param a: Integer action to take in environment. |
| 26 | """ |
| 27 | |
| 28 | @abstractmethod |
| 29 | def reset(self) -> None: |
no outgoing calls
no test coverage detected