Skip to content

Commit c4a38e4

Browse files
committed
fix: correct type hint for Matrix.distances
following up on d8c9bf6 / #132
1 parent 8799aea commit c4a38e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routingpy/matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def durations(self) -> Optional[List[List[Optional[float]]]]:
5656
return self._durations
5757

5858
@property
59-
def distances(self) -> Optional[List[List[float]]]:
59+
def distances(self) -> Optional[List[List[Optional[float]]]]:
6060
"""
6161
The distance matrix as list akin to::
6262

0 commit comments

Comments
 (0)