Skip to content

Commit 442c506

Browse files
committed
lints
1 parent 6be67c0 commit 442c506

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/gps_datalogging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Simple GPS datalogging demonstration.
2-
# This example uses the GPS library and to read raw NMEA sentences
2+
# This example uses the GPS library and to read raw NMEA sentences
33
# over I2C or UART from the GPS unit and dumps them to a file on an SD card
44
# (recommended), microcontroller internal storage (be careful as only a few
55
# kilobytes are available), or to a filesystem.

examples/gps_time_source.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,11 @@
5252

5353
#Time & date from time.localtime() function
5454
local_time = time.localtime()
55-
55+
5656
print("Local time: {:02}/{:02}/{} {:02}:{:02}:{:02}".format(
5757
local_time.tm_mon,
5858
local_time.tm_mday,
5959
local_time.tm_year,
6060
local_time.tm_hour,
6161
local_time.tm_min,
6262
local_time.tm_sec))
63-

0 commit comments

Comments
 (0)