Skip to content

Commit d18cce9

Browse files
committed
Fix ruff
1 parent c538291 commit d18cce9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

aioesphomeapi/model.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ class DeviceInfo(APIModelBase):
169169
bluetooth_proxy_feature_flags: int = 0
170170
suggested_area: str = ""
171171
bluetooth_mac_address: str = ""
172-
sub_devices: list[SubDeviceInfo] = converter_field(default_factory=list, converter=SubDeviceInfo.convert_list)
172+
sub_devices: list[SubDeviceInfo] = converter_field(
173+
default_factory=list, converter=SubDeviceInfo.convert_list
174+
)
173175

174176
def bluetooth_proxy_feature_flags_compat(self, api_version: APIVersion) -> int:
175177
if api_version < APIVersion(1, 9):

0 commit comments

Comments
 (0)