Skip to content

Commit

Permalink
Remove extra parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
theGOTOguy committed Jul 13, 2024
1 parent ab9a272 commit 4ee29e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devices/uartnmeagps.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, remotestorage, localstorage, timesource, interval=None, send_
time.sleep(8)

if self.has_read_data:
logging.info("Found NMEA GPS on {} with baud rate {}!").format(os.getenv('uart_serial_port'), int(baud)))
logging.info("Found NMEA GPS on {} with baud rate {}!".format(os.getenv('uart_serial_port'), int(baud)))
break

self.nmea = None
Expand Down

0 comments on commit 4ee29e4

Please sign in to comment.