mirror of
https://github.com/home-assistant/core.git
synced 2025-06-06 06:07:07 +00:00
Convert asuswrt user/pass to strings
This commit is contained in:
parent
a0ddda4bc6
commit
e6846e7eb9
@ -58,8 +58,8 @@ class AsusWrtDeviceScanner(object):
|
|||||||
|
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
self.host = config[CONF_HOST]
|
self.host = config[CONF_HOST]
|
||||||
self.username = config[CONF_USERNAME]
|
self.username = str(config[CONF_USERNAME])
|
||||||
self.password = config[CONF_PASSWORD]
|
self.password = str(config[CONF_PASSWORD])
|
||||||
|
|
||||||
self.lock = threading.Lock()
|
self.lock = threading.Lock()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user