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

4 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-18 11:17 +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 permitted_characteristics_registry, 

13) 

14from .profile_lookup import ( 

15 ProfileLookupRegistry, 

16 profile_lookup_registry, 

17) 

18 

19__all__ = [ 

20 "PermittedCharacteristicsRegistry", 

21 "ProfileLookupRegistry", 

22 "permitted_characteristics_registry", 

23 "profile_lookup_registry", 

24]