Coverage for src / bluetooth_sig / registry / company_identifiers / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 20:14 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 20:14 +0000
1"""Company identifier registries from assigned_numbers/company_identifiers/.
3This module contains the registry for manufacturer company IDs, allowing
4resolution of Bluetooth SIG company identifiers to company names.
5"""
7from __future__ import annotations
9from .company_identifiers_registry import (
10 CompanyIdentifiersRegistry,
11 company_identifiers_registry,
12)
14__all__ = [
15 "CompanyIdentifiersRegistry",
16 "company_identifiers_registry",
17]