Skip to content

Commit

Permalink
Solution with fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
watergor committed Sep 19, 2024
1 parent 15e6e93 commit 7bd4066
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ def __init__(self, weight: int) -> None:


class BaseRobot:
def __init__(self, name: str, weight: int, coords: list = None) -> None:
def __init__(
self,
name: str,
weight: int,
coords: list[int] = None
) -> None:
self.name = name
self.weight = weight
if coords:
Expand Down

0 comments on commit 7bd4066

Please sign in to comment.