We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 000126d commit 2b153e1Copy full SHA for 2b153e1
adafruit_ble/services/standard/__init__.py
@@ -70,8 +70,11 @@ class BatteryService(Service):
70
"""Provides battery level information"""
71
72
uuid = StandardUUID(0x180F)
73
- level = Uint8Characteristic(max_value=100, properties=Characteristic.READ | Characteristic.NOTIFY, uuid=StandardUUID(0x2A19))
74
-
+ level = Uint8Characteristic(
+ max_value=100,
75
+ properties=Characteristic.READ | Characteristic.NOTIFY,
76
+ uuid=StandardUUID(0x2A19),
77
+ )
78
79
class CurrentTimeService(Service):
80
"""Provides the current time."""
0 commit comments