Skip to content

Commit 3a2fd4b

Browse files
committed
my Travis is borked; stab-in-the-dark pylint/sphinx fixes
1 parent 5e21438 commit 3a2fd4b

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

adafruit_ht16k33/ht16k33.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
""".. currentmodule:: adafruit_ht16k33"""
23+
"""
24+
`adafruit_ht16k33.ht16k33`
25+
===========================
26+
27+
* Authors: Radomir Dopieralski & Tony DiCola for Adafruit Industries
28+
29+
"""
2430

2531
from adafruit_bus_device import i2c_device
2632
from micropython import const

adafruit_ht16k33/matrix.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
"""Matrix Displays
24-
****************
23+
"""
24+
Matrix Displays
25+
================
2526
26-
.. currentmodule:: adafruit_ht16k33.matrix"""
27+
"""
2728

2829
from adafruit_ht16k33.ht16k33 import HT16K33
2930

adafruit_ht16k33/segments.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
"""Segment Displays
24-
****************
25-
26-
.. currentmodule:: adafruit_ht16k33.segments"""
23+
"""
24+
Segment Displays
25+
=================
26+
"""
2727

2828
from adafruit_ht16k33.ht16k33 import HT16K33
2929

30+
# pylint disable=bad-whitespace
3031
CHARS = (
3132
0b00000000, 0b00000000, #
3233
0b01000000, 0b00000110, # !
@@ -144,7 +145,7 @@
144145
0x71, # F
145146
0x40, # -
146147
)
147-
148+
# pylint enable=bad-whitespace
148149

149150
class Seg14x4(HT16K33):
150151
"""Alpha-numeric, 14-segment display."""

0 commit comments

Comments
 (0)