Coverage for src/bluetooth_sig/registry/profiles/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.14.3, created at 2026-06-28 01:26 +0000

1"""Profile-specific registries from assigned_numbers/profiles_and_services/. 

2 

3This module contains registries for permitted characteristics and simple 

4profile parameter lookup tables loaded from the Bluetooth SIG assigned 

5numbers YAML files. 

6""" 

7 

8from __future__ import annotations 

9 

10from .permitted_characteristics import ( 

11 PermittedCharacteristicsRegistry, 

12 get_permitted_characteristics_registry, 

13) 

14from .profile_lookup import ( 

15 ProfileLookupRegistry, 

16 get_profile_lookup_registry, 

17) 

18 

19__all__ = [ 

20 "PermittedCharacteristicsRegistry", 

21 "ProfileLookupRegistry", 

22 "get_permitted_characteristics_registry", 

23 "get_profile_lookup_registry", 

24]