Skip to content

Commit 5cebdb8

Browse files
authored
Merge pull request #12 from makermelissa/master
Fixed Travis Errors and Disabled no-member
2 parents c2ad8e1 + 8ef7456 commit 5cebdb8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

examples/slideshow_simpletest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import board
2-
from adafruit_slideshow import PlayBackOrder, SlideShow
32
import pulseio
3+
from adafruit_slideshow import PlayBackOrder, SlideShow
4+
#pylint: disable=no-member
45

56
# Create the slideshow object that plays through once alphabetically.
67
slideshow = SlideShow(board.DISPLAY, pulseio.PWMOut(board.TFT_BACKLIGHT), folder="/",

examples/slideshow_touch.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import board
2-
from adafruit_slideshow import SlideShow, PlayBackDirection
3-
import touchio
42
import pulseio
3+
import touchio
4+
from adafruit_slideshow import SlideShow, PlayBackDirection
5+
#pylint: disable=no-member
56

67
forward_button = touchio.TouchIn(board.TOUCH4)
78
back_button = touchio.TouchIn(board.TOUCH1)

0 commit comments

Comments
 (0)