Skip to content

Commit 0c29b28

Browse files
committed
pylint - try yet again to disable protected-access error for name setting
1 parent 6dbbff0 commit 0c29b28

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Snow_Globe_BLE_CPB/ble_snowglobe.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@
4848
ble = BLERadio()
4949
uart = UARTService()
5050
advertisement = ProvideServicesAdvertisement(uart)
51-
#pylint: disable=protected-access
52-
ble._adapter.name = SNOWGLOBE_NAME
51+
ble._adapter.name = SNOWGLOBE_NAME #pylint: disable=protected-access
5352

5453
#--| ANIMATIONS |----------------------------------------------------
5554
def spin(config):

0 commit comments

Comments
 (0)