Skip to content

Commit ceb92a6

Browse files
authored
Remove comment regarding string type
1 parent f98cd66 commit ceb92a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_gps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _parse_degrees(nmea_data: str) -> int:
9696
minutes = int(raw[0]) % 100 # the mm.
9797
minutes += int(f"{raw[1][:4]:0<4}") / 10000
9898
minutes = int(minutes / 60 * 1000000)
99-
return degrees + minutes # return parsed string in the format dddmmmmmm
99+
return degrees + minutes
100100

101101

102102
def _parse_int(nmea_data: str) -> int:

0 commit comments

Comments
 (0)