From 7aebef56ca6378cb09d337b8832c0128079c2ee0 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sun, 17 Jul 2022 20:19:09 +0300 Subject: [PATCH] Correct typos in smartdevice.py (#358) --- kasa/smartdevice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kasa/smartdevice.py b/kasa/smartdevice.py index 93e01758..cf3c5384 100755 --- a/kasa/smartdevice.py +++ b/kasa/smartdevice.py @@ -128,7 +128,7 @@ class SmartDevice: >>> dev.mac 50:C7:BF:01:F8:CD - Some information can also be changed programatically: + Some information can also be changed programmatically: >>> asyncio.run(dev.set_alias("new alias")) >>> asyncio.run(dev.set_mac("01:23:45:67:89:ab")) @@ -433,7 +433,7 @@ class SmartDevice: @property # type: ignore @requires_update def rssi(self) -> Optional[int]: - """Return WiFi signal strenth (rssi).""" + """Return WiFi signal strength (rssi).""" rssi = self.sys_info.get("rssi") return None if rssi is None else int(rssi)