diff --git a/02-challenge-solution.py b/02-challenge-solution.py index fc4544e..439dfbb 100644 --- a/02-challenge-solution.py +++ b/02-challenge-solution.py @@ -15,7 +15,7 @@ def get_area(self): def print_coordinates(self): top_right = self.origin.x + self.width - bottom_left = self.origin.y + self.height + top_left = self.origin.y + self.height print('Starting Point (X)): ' + str(self.origin.x)) print('Starting Point (Y)): ' + str(self.origin.y)) print('End Point X-Axis (Top Right): ' + str(top_right))