From b2c635768f0aa835e946422c68ae15cad8a33b18 Mon Sep 17 00:00:00 2001 From: Gilles Boccon-Gibod Date: Fri, 9 Jun 2023 15:54:32 -0700 Subject: [PATCH] fix format --- examples/run_classic_connect.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/run_classic_connect.py b/examples/run_classic_connect.py index f8af5cc..3ae6ed8 100644 --- a/examples/run_classic_connect.py +++ b/examples/run_classic_connect.py @@ -78,7 +78,9 @@ async def main(): attributes = await sdp_client.get_attributes( service_record_handle, [SDP_ALL_ATTRIBUTES_RANGE] ) - print(color(f'SERVICE {service_record_handle:04X} attributes:', 'yellow')) + print( + color(f'SERVICE {service_record_handle:04X} attributes:', 'yellow') + ) for attribute in attributes: print(' ', attribute.to_string(with_colors=True))