Skip to content

Commit 45c95f7

Browse files
despadamedoardob90
andauthored
Update tutorial/tests/test_05_object_oriented_programming.py
Co-authored-by: Edoardo Baldi <edoardo.baldi@empa.ch>
1 parent ff6a9e9 commit 45c95f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorial/tests/test_05_object_oriented_programming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ class Bowl:
352352
def __init__(self):
353353
self.scoops = []
354354

355-
def add_scoops(self, *new_scoops: list["Scoop"]) -> None:
355+
def add_scoops(self, *new_scoops: "Scoop") -> None:
356356
for one_scoop in new_scoops:
357357
self.scoops.append(one_scoop)
358358

0 commit comments

Comments
 (0)