Skip to content

Commit 9509c64

Browse files
committed
Capitalized tuple
1 parent 2518983 commit 9509c64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bedrock_ge/gi/gis_geometry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def calculate_location_gis_geometry(
156156

157157
def calculate_wgs84_coordinates(
158158
from_crs: CRS, easting: float, northing: float, elevation: Union[float, None] = None
159-
) -> tuple[float, float, (float | None)]:
159+
) -> Tuple[float, float, (float | None)]:
160160
"""Transforms coordinates from an arbitrary Coordinate Reference System (CRS) to the WGS84 CRS, which is the standard for geodetic coordinates.
161161
162162
Args:
@@ -167,7 +167,7 @@ def calculate_wgs84_coordinates(
167167
transform. Defaults to None.
168168
169169
Returns:
170-
tuple[float, float, (float | None)]: A tuple containing the longitude, latitude
170+
Tuple[float, float, (float | None)]: A tuple containing the longitude, latitude
171171
and WGS84 height of the transformed point, in that order.
172172
The height is None if no elevation was given, or if the provided CRS doesn't
173173
have a proper datum defined.

0 commit comments

Comments
 (0)