Skip to content

Commit fbcbc5c

Browse files
committed
Fixed return type
1 parent 5efefcd commit fbcbc5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

laptop/myLaptop renamed to laptop/myLaptop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Laptop:
2222
screen_size_in_inches: float
2323
operating_system: OperatingSystem
2424

25-
def allocate_laptops(people: List[Person], laptops: List[Laptop]) -> dict[Person, Laptop]:
25+
def allocate_laptops(people: List[Person], laptops: List[Laptop]) -> dict[str, tuple[str, int]]:
2626
allocateLp = {}
2727
lpNewList = laptops.copy()
2828

0 commit comments

Comments
 (0)