Skip to content

Commit c9b9844

Browse files
committed
Fix sphinx/build_docs warnings for geodesy/haversine_distance.py
1 parent 804a8b7 commit c9b9844

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

geodesy/haversine_distance.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ def haversine_distance(lat1: float, lon1: float, lat2: float, lon2: float) -> fl
2222
2323
Args:
2424
lat1, lon1: latitude and longitude of coordinate 1
25-
lat2, lon2: latitude and longitude of coordinate 2
25+
lat2, lon2: latitude and longitude of coordinate
2626
Returns:
2727
geographical distance between two points in metres
28+
2829
>>> from collections import namedtuple
2930
>>> point_2d = namedtuple("point_2d", "lat lon")
3031
>>> SAN_FRANCISCO = point_2d(37.774856, -122.424227)

0 commit comments

Comments
 (0)