actable
            Actable
    
              Bases: Protocol
Base class for active environments.
Active environments require actions to be taken to advance.
            act(action)
  
      abstractmethod
  
    Act on the environment.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| action | Data | The action to perform. | required | 
Source code in src/flowcean/core/environment/actable.py
              | 16 17 18 19 20 21 22 |  |