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

3 statements  

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

1"""Company identifier registries from assigned_numbers/company_identifiers/. 

2 

3This module contains the registry for manufacturer company IDs, allowing 

4resolution of Bluetooth SIG company identifiers to company names. 

5""" 

6 

7from __future__ import annotations 

8 

9from .company_identifiers_registry import ( 

10 CompanyIdentifiersRegistry, 

11 get_company_identifiers_registry, 

12) 

13 

14__all__ = [ 

15 "CompanyIdentifiersRegistry", 

16 "get_company_identifiers_registry", 

17]