Rename base TPLinkProtocol to BaseProtocol (#669)

This commit is contained in:
Steven B
2024-01-22 15:28:30 +00:00
committed by GitHub
parent b784d891ff
commit 14acc8550e
14 changed files with 30 additions and 30 deletions

View File

@@ -24,12 +24,12 @@ from .exceptions import (
TimeoutException,
)
from .json import dumps as json_dumps
from .protocol import BaseTransport, TPLinkProtocol, md5
from .protocol import BaseProtocol, BaseTransport, md5
_LOGGER = logging.getLogger(__name__)
class SmartProtocol(TPLinkProtocol):
class SmartProtocol(BaseProtocol):
"""Class for the new TPLink SMART protocol."""
BACKOFF_SECONDS_AFTER_TIMEOUT = 1