bumble 0.0.194__py3-none-any.whl → 0.0.195__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,7 @@ from bumble.colors import color
27
27
  from bumble.core import name_or_number
28
28
  from bumble.hci import (
29
29
  map_null_terminated_utf8_string,
30
- LeFeatureMask,
30
+ LeFeature,
31
31
  HCI_SUCCESS,
32
32
  HCI_VERSION_NAMES,
33
33
  LMP_VERSION_NAMES,
@@ -140,7 +140,7 @@ async def get_le_info(host: Host) -> None:
140
140
 
141
141
  print(color('LE Features:', 'yellow'))
142
142
  for feature in host.supported_le_features:
143
- print(LeFeatureMask(feature).name)
143
+ print(f' {LeFeature(feature).name}')
144
144
 
145
145
 
146
146
  # -----------------------------------------------------------------------------
@@ -224,7 +224,7 @@ async def async_main(latency_probes, transport):
224
224
  print()
225
225
  print(color('Supported Commands:', 'yellow'))
226
226
  for command in host.supported_commands:
227
- print(' ', HCI_Command.command_name(command))
227
+ print(f' {HCI_Command.command_name(command)}')
228
228
 
229
229
 
230
230
  # -----------------------------------------------------------------------------