Skip to content

Commit

Permalink
Merge pull request #12 from makermelissa/master
Browse files Browse the repository at this point in the history
Fixed Travis Errors and Disabled no-member
  • Loading branch information
kattni committed Feb 12, 2019
2 parents c2ad8e1 + 8ef7456 commit 5cebdb8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/slideshow_simpletest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import board
from adafruit_slideshow import PlayBackOrder, SlideShow
import pulseio
from adafruit_slideshow import PlayBackOrder, SlideShow
#pylint: disable=no-member

# Create the slideshow object that plays through once alphabetically.
slideshow = SlideShow(board.DISPLAY, pulseio.PWMOut(board.TFT_BACKLIGHT), folder="/",
Expand Down
5 changes: 3 additions & 2 deletions examples/slideshow_touch.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import board
from adafruit_slideshow import SlideShow, PlayBackDirection
import touchio
import pulseio
import touchio
from adafruit_slideshow import SlideShow, PlayBackDirection
#pylint: disable=no-member

forward_button = touchio.TouchIn(board.TOUCH4)
back_button = touchio.TouchIn(board.TOUCH1)
Expand Down

0 comments on commit 5cebdb8

Please sign in to comment.