Skip to content

Commit 976675d

Browse files
committed
Fix remaining lint errors
1 parent 766da4a commit 976675d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_ble_beacon.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,11 @@ def beacon_tx_power(self) -> int:
9999
raise NotImplementedError("Must be implemented in beacon subclass")
100100

101101
@beacon_tx_power.setter
102-
def beacon_txt_power(self, power: int) -> None:
102+
def beacon_tx_power(self, power: int) -> None:
103103
raise NotImplementedError("Must be implemented in beacon subclass")
104104

105105

106+
# pylint: disable=invalid-name
106107
class iBeaconAdvertisement(_BeaconAdvertisement):
107108
"""An iBeacon advertisement"""
108109

0 commit comments

Comments
 (0)