From bbbe06f2986bba8dc2633579f8af3691092c700c Mon Sep 17 00:00:00 2001 From: RuffTrouble Date: Tue, 7 Oct 2025 14:20:51 +0200 Subject: [PATCH] Update 02-challenge-solution.py corrected naming in calling method from .getArea() .get_area() --- 02-challenge-solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-challenge-solution.py b/02-challenge-solution.py index fc4544e..0b3b34c 100644 --- a/02-challenge-solution.py +++ b/02-challenge-solution.py @@ -31,5 +31,5 @@ def build_rectangle(): rectangle = build_rectangle() -print(rectangle.getArea()) +print(rectangle.get_area()) rectangle.print_coordinates()