Skip to content

Commit a867b45

Browse files
committed
Fix pylint issue regarding too many statements on the chip.Chip._linux_id method
1 parent 87b7a2e commit a867b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_platformdetect/chip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def id(self): # pylint: disable=invalid-name,too-many-branches,too-many-return-
8080

8181
# pylint: enable=invalid-name
8282

83-
def _linux_id(self): # pylint: disable=too-many-branches
83+
def _linux_id(self): # pylint: disable=too-many-branches,too-many-statements
8484
"""Attempt to detect the CPU on a computer running the Linux kernel."""
8585

8686
if self.detector.check_dt_compatible_value('qcom,apq8016'):

0 commit comments

Comments
 (0)