Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move digitalio import to top of simpletest.py, per pylint
  • Loading branch information
Brennen Bearnes committed Aug 16, 2018
commit f72818e407ac43f10a49b0ebccf049d39ca419c8
2 changes: 1 addition & 1 deletion examples/simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import board
import busio
import digitalio

import adafruit_si4713

Expand All @@ -24,7 +25,6 @@
# If you hooked up the reset line you should specify that too. Make sure
# to pass in a DigitalInOut instance. You will need the reset pin with the
# Raspberry Pi, and probably other devices:
import digitalio
reset = digitalio.DigitalInOut(board.D5)

print('initializing si4713 instance')
Expand Down