Skip to content

Commit b19a3e2

Browse files
committed
Included #pylint: disable-msg=R0904
Error states `Too many public methods`. The allowed numbers are between 5 and 20. This can be increased in pylint by changing `--max-public-methods=` but this alters it globally.
1 parent 6500488 commit b19a3e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_circuitplayground/express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def light(self):
6767
return self._photocell.value * 330 // (2 ** 16)
6868

6969

70-
class Express:
70+
class Express: #pylint: disable-msg=R0904
7171
"""Represents a single CircuitPlayground Express. Do not use more than one at
7272
a time."""
7373
def __init__(self):

0 commit comments

Comments
 (0)