Skip to content

Commit

Permalink
Fix python formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bckempa committed Dec 7, 2023
1 parent 799de4b commit d7780f3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ class PlanAction:
Class representing one entry in the output plan sequence of a PDDL planner.
"""

def __init__(self, start_time_seconds: FloatStr, action: str, duration_seconds: FloatStr):
def __init__(
self, start_time_seconds: FloatStr, action: str, duration_seconds: FloatStr
):
self.start_time_seconds = start_time_seconds
self.action = action
self.duration_seconds = duration_seconds
Expand Down

0 comments on commit d7780f3

Please sign in to comment.