Skip to content

Commit c62b31b

Browse files
committed
pylint fixes
1 parent 1a38520 commit c62b31b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

examples/computer_datalogging.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# This actually doesn't even use the GPS library and instead just reads raw
33
# NMEA sentences from the GPS unit and dumps them to a file.
44

5-
import board
6-
import busio
75
import serial # pyserial is required
86

97
# Path to the file to log GPS data. By default this will be appended to

examples/gps_echotest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
while True:
5555
data = uart.read(32) # read up to 32 bytes
5656
# print(data) # this is a bytearray type
57-
57+
5858
if data is not None:
5959
# convert bytearray to string
6060
data_string = ''.join([chr(b) for b in data])

0 commit comments

Comments
 (0)