Skip to content

Commit

Permalink
Add whitespace around * sign
Browse files Browse the repository at this point in the history
  • Loading branch information
dfilan authored Aug 5, 2022
1 parent cd2696f commit 36c30ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seals/diagnostics/parabola.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, x_step: float = 0.05, bounds: float = 5):

super().__init__(
state_space=spaces.Box(low=state_low, high=state_high),
action_space=spaces.Box(low=-2*bounds, high=2*bounds, shape=()),
action_space=spaces.Box(low=(-2) * bounds, high=2 * bounds, shape=()),
)

def terminal(self, state: int, n_actions_taken: int) -> bool:
Expand Down

0 comments on commit 36c30ea

Please sign in to comment.