Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2b09d30

Browse files
committedJun 18, 2020
fix pylint issues in base
1 parent c444566 commit 2b09d30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎adafruit_pybadger/pybadger_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@
5555
import audiocore
5656
except ImportError:
5757
import audioio as audiocore
58+
from adafruit_bitmap_font import bitmap_font
5859
import displayio
5960
from adafruit_display_shapes.rect import Rect
6061
from adafruit_display_text import label
61-
from adafruit_bitmap_font import bitmap_font
6262
import terminalio
6363
import adafruit_miniqr
6464

@@ -135,6 +135,8 @@ def __init__(self):
135135
self.display = board.DISPLAY
136136
self._display_brightness = 1.0
137137

138+
self._neopixels = None
139+
138140
# Auto dim display based on movement
139141
self._last_accelerometer = None
140142
self._start_time = time.monotonic()

0 commit comments

Comments
 (0)
Please sign in to comment.