Apply suggestions from code review.

This commit is contained in:
Marek Wolan
2023-10-25 19:07:45 +01:00
parent 4872c939ff
commit 02901a7c99
3 changed files with 4 additions and 2 deletions

View File

@@ -697,7 +697,7 @@ class ActionManager:
def get_action(self, action: int) -> Tuple[str, Dict]:
"""Produce action in CAOS format."""
"""the agent chooses an action (as an integer), this is converted into an action in CAOS format"""
"""The caos format is basically a action identifier, followed by parameters stored in a dictionary"""
"""The CAOS format is basically a action identifier, followed by parameters stored in a dictionary"""
act_identifier, act_options = self.action_map[action]
return act_identifier, act_options