Skip to content

Commit 500559b

Browse files
committed
fix typo
1 parent 01bcf65 commit 500559b

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
@@ -133,7 +133,7 @@ def _read_deg_mins(data: List[str], index: int, neg: str) -> Tuple[int, float]:
133133
int_part, _, minutes_decimal = data[index].partition(".")
134134
# we need to parse from right to left, minutes can only have 2 digits
135135
minutes_int = int_part[-2:]
136-
# the rest mus be degrees which are either 2 or 3 digits
136+
# the rest must be degrees which are either 2 or 3 digits
137137
deg = int(int_part[:-2])
138138
# combine the parts of the minutes, this also works when there are no
139139
# decimal places specified in the sentence

0 commit comments

Comments
 (0)