* add strict type annotations * fix pylint, add coverage omit * apply suggestions * fix rebase conflict * import PLATFORM_SCHEMA as BASE_PLATFORM_SCHEMA * correct get_device_name() return annotation
11 lines
226 B
Python
11 lines
226 B
Python
"""Model definitions for Actiontec MI424WR (Verizon FIOS) routers."""
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Device:
|
|
"""Actiontec device class."""
|
|
|
|
ip_address: str
|
|
mac_address: str
|
|
timevalid: int
|