Skip to content

Commit f42759e

Browse files
committed
Correct import order in time_source.py example for Travis CI
Travis CI build failed due to Pylint: > ************* Module time_source > C: 8, 0: third party import "import busio" should be placed before "import rtc" (wrong-import-order) https://travis-ci.org/adafruit/Adafruit_CircuitPython_GPS/builds/450615758
1 parent 115ed40 commit f42759e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/time_source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import time
66
import board
7-
import rtc
87
import busio
8+
import rtc
99
import adafruit_gps
1010

1111
uart = busio.UART(board.TX, board.RX, baudrate=9600, timeout=3000)

0 commit comments

Comments
 (0)