Re-enable Ruff D411 (#89035)
parent
e849878a48
commit
eebcf70b41
|
@ -234,6 +234,7 @@ class ESPHomeClient(BaseBleakClient):
|
||||||
Keyword Args:
|
Keyword Args:
|
||||||
timeout (float): Timeout for required
|
timeout (float): Timeout for required
|
||||||
``BleakScanner.find_device_by_address`` call. Defaults to 10.0.
|
``BleakScanner.find_device_by_address`` call. Defaults to 10.0.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
Boolean representing connection status.
|
Boolean representing connection status.
|
||||||
"""
|
"""
|
||||||
|
@ -504,6 +505,7 @@ class ESPHomeClient(BaseBleakClient):
|
||||||
The characteristic to read from, specified by either integer
|
The characteristic to read from, specified by either integer
|
||||||
handle, UUID or directly by the BleakGATTCharacteristic
|
handle, UUID or directly by the BleakGATTCharacteristic
|
||||||
object representing it.
|
object representing it.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(bytearray) The read data.
|
(bytearray) The read data.
|
||||||
"""
|
"""
|
||||||
|
@ -519,6 +521,7 @@ class ESPHomeClient(BaseBleakClient):
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
handle (int): The handle of the descriptor to read from.
|
handle (int): The handle of the descriptor to read from.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(bytearray) The read data.
|
(bytearray) The read data.
|
||||||
"""
|
"""
|
||||||
|
@ -583,6 +586,7 @@ class ESPHomeClient(BaseBleakClient):
|
||||||
def callback(sender: int, data: bytearray):
|
def callback(sender: int, data: bytearray):
|
||||||
print(f"{sender}: {data}")
|
print(f"{sender}: {data}")
|
||||||
client.start_notify(char_uuid, callback)
|
client.start_notify(char_uuid, callback)
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
characteristic (BleakGATTCharacteristic):
|
characteristic (BleakGATTCharacteristic):
|
||||||
The characteristic to activate notifications/indications on a
|
The characteristic to activate notifications/indications on a
|
||||||
|
|
|
@ -271,7 +271,6 @@ ignore = [
|
||||||
"D404", # First word of the docstring should not be This
|
"D404", # First word of the docstring should not be This
|
||||||
"D406", # Section name should end with a newline
|
"D406", # Section name should end with a newline
|
||||||
"D407", # Section name underlining
|
"D407", # Section name underlining
|
||||||
"D411", # Missing blank line before section
|
|
||||||
"E501", # line too long
|
"E501", # line too long
|
||||||
"E731", # do not assign a lambda expression, use a def
|
"E731", # do not assign a lambda expression, use a def
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue