Move TAPO smartcamera out of experimental package (#1255)

Co-authored-by: Teemu R. <tpr@iki.fi>
This commit is contained in:
Steven B.
2024-11-13 19:59:42 +00:00
committed by GitHub
parent e55731c110
commit 6213b90f62
21 changed files with 59 additions and 36 deletions

View File

@@ -18,13 +18,13 @@ from kasa.exceptions import (
KasaException,
SmartErrorCode,
)
from kasa.experimental.sslaestransport import (
from kasa.httpclient import HttpClient
from kasa.transports.aestransport import AesEncyptionSession
from kasa.transports.sslaestransport import (
SslAesTransport,
TransportState,
_sha256_hash,
)
from kasa.httpclient import HttpClient
from kasa.transports.aestransport import AesEncyptionSession
# Transport tests are not designed for real devices
pytestmark = [pytest.mark.requires_dummy]