Skip to content

Commit af89da4

Browse files
Update distance_calculator.py
1 parent 51eabc2 commit af89da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distance_calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ def main():
7575
distance = calculate_distance(startX, startY, endX, endY)
7676
print(f"The distance between ({startX}, {startY}) and ({endX}, {endY}) is {distance} units.")
7777

78-
if "__name__" == __main__:
78+
if __name__ == "__main__":
7979
main()

0 commit comments

Comments
 (0)