Skip to content

Commit

Permalink
change class FlyingRobot
Browse files Browse the repository at this point in the history
  • Loading branch information
RadeonT800 committed Oct 17, 2024
1 parent 514e5f9 commit a36eaf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(
weight: int,
coords: list[int] | None = None
) -> None:
super().__init__(name, weight)
super().__init__(name, weight, coords)
self.coords = coords if coords else [0, 0, 0]

def go_up(self, step: int = 1) -> None:
Expand Down

0 comments on commit a36eaf8

Please sign in to comment.