Skip to content

Commit 6be67c0

Browse files
committed
fixtuple
1 parent 378743d commit 6be67c0

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
@@ -141,7 +141,7 @@ def update(self):
141141
self._parse_gpgll(args)
142142
elif data_type in (b'GPRMC', b'GNRMC'): # RMC, minimum location info
143143
self._parse_gprmc(args)
144-
elif data_type in (b'GPGGA' b'GNGGA'): # GGA, 3d location fix
144+
elif data_type in (b'GPGGA', b'GNGGA'): # GGA, 3d location fix
145145
self._parse_gpgga(args)
146146
return True
147147

0 commit comments

Comments
 (0)