Skip to content

Commit fb2b101

Browse files
committed
Ignore class length but keep rule active + remove error
1 parent 8875467 commit fb2b101

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

adafruit_minimqtt/adafruit_minimqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def __init__(self) -> None:
111111
setattr(NullLogger, log_level, self.nothing)
112112

113113

114-
class MQTT:
114+
class MQTT: # noqa: PLR0904 # too-many-public-methods
115115
"""MQTT Client for CircuitPython.
116116
117117
:param str broker: MQTT Broker URL or IP Address.

examples/esp32spi/minimqtt_certificate_esp32spi.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

4+
from os import getenv
5+
46
import adafruit_connection_manager
57
import board
68
import busio

0 commit comments

Comments
 (0)