Skip to content

Commit 481a5eb

Browse files
authored
Fixing linting
1 parent d27c2e8 commit 481a5eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/human_aware_rl/rllib/rllib.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,9 @@ def _validate_schedule(self, schedule):
218218
def _setup_action_space(self, agents):
219219
action_sp = {}
220220
for agent in agents:
221-
action_sp[agent] = gymnasium.spaces.Discrete(len(Action.ALL_ACTIONS))
221+
action_sp[agent] = gymnasium.spaces.Discrete(
222+
len(Action.ALL_ACTIONS)
223+
)
222224
self.action_space = gymnasium.spaces.Dict(action_sp)
223225
self.shared_action_space = gymnasium.spaces.Discrete(
224226
len(Action.ALL_ACTIONS)

0 commit comments

Comments
 (0)