Use Device instead of SmartDevice where feasible (#1585)
Some checks failed
CI / Perform linting checks (3.13) (push) Has been cancelled
CodeQL checks / Analyze (python) (push) Has been cancelled
CI / Python 3.11 on macos-latest (push) Has been cancelled
CI / Python 3.12 on macos-latest (push) Has been cancelled
CI / Python 3.13 on macos-latest (push) Has been cancelled
CI / Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Python 3.11 on windows-latest (push) Has been cancelled
CI / Python 3.12 on windows-latest (push) Has been cancelled
CI / Python 3.13 on windows-latest (push) Has been cancelled
Stale / stale (push) Has been cancelled

This commit is contained in:
ZeliardM
2025-10-10 12:26:30 -04:00
committed by GitHub
parent 0f6fc9c4d1
commit 1a89a1c1b9
5 changed files with 16 additions and 17 deletions

View File

@@ -4,7 +4,7 @@ import asyncio
import asyncclick as click
from kasa import DeviceType, Module, SmartDevice
from kasa import Device, DeviceType, Module
from kasa.smart import SmartChildDevice
from .common import (
@@ -21,7 +21,7 @@ def pretty_category(cat: str):
@click.group()
@pass_dev
async def hub(dev: SmartDevice):
async def hub(dev: Device):
"""Commands controlling hub child device pairing."""
if dev.device_type is not DeviceType.Hub:
error(f"{dev} is not a hub.")
@@ -32,7 +32,7 @@ async def hub(dev: SmartDevice):
@hub.command(name="list")
@pass_dev
async def hub_list(dev: SmartDevice):
async def hub_list(dev: Device):
"""List hub paired child devices."""
for c in dev.children:
echo(f"{c.device_id}: {c}")
@@ -40,7 +40,7 @@ async def hub_list(dev: SmartDevice):
@hub.command(name="supported")
@pass_dev
async def hub_supported(dev: SmartDevice):
async def hub_supported(dev: Device):
"""List supported hub child device categories."""
cs = dev.modules[Module.ChildSetup]
@@ -51,7 +51,7 @@ async def hub_supported(dev: SmartDevice):
@hub.command(name="pair")
@click.option("--timeout", default=10)
@pass_dev
async def hub_pair(dev: SmartDevice, timeout: int):
async def hub_pair(dev: Device, timeout: int):
"""Pair all pairable device.
This will pair any child devices currently in pairing mode.