Skip to content

Commit

Permalink
Fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tobirohrer committed Oct 8, 2023
1 parent 3c58859 commit 90e833c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion building_energy_storage_simulation/building_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def simulate_one_step(self, action: float) -> Tuple[float, float]:
:param action: Fraction of energy to be stored or retrieved from the battery. The action lies in [-1;1]. The
action represents the fraction of `max_battery_charge_per_timestep` which should be used to charge or
discharge the battery. 1 represents the maximum possible amount of energy which can be used to charge the
battery per time step.
battery per time step.
:type action: float
:returns:
Tuple of:
Expand Down
2 changes: 1 addition & 1 deletion building_energy_storage_simulation/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def step(self, action: ActType) -> Tuple[ObsType, float, bool, bool, dict]:
:param action: Fraction of energy to be stored or retrieved from the battery. The action lies in [-1;1]. The
action represents the fraction of `max_battery_charge_per_timestep` which should be used to charge or
discharge the battery. 1 represents the maximum possible amount of energy which can be used to charge the
battery per time step.
battery per time step.
:type action: float
:returns:
Tuple of:
Expand Down

0 comments on commit 90e833c

Please sign in to comment.