Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Modem Caller ID integration."""
2 
3 from typing import Final
4 
5 from phone_modem import exceptions
6 from serial import SerialException
7 
8 DATA_KEY_API = "api"
9 DEFAULT_NAME = "Phone Modem"
10 DOMAIN = "modem_callerid"
11 
12 EXCEPTIONS: Final = (
13  FileNotFoundError,
14  exceptions.SerialError,
15  exceptions.ResponseError,
16  SerialException,
17 )
18 
19 
20 class CID:
21  """CID Attributes."""
22 
23  CID_TIME = "cid_time"
24  CID_NUMBER = "cid_number"
25  CID_NAME = "cid_name"