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