Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 02-challenge-solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down