Fix env var for password to match user var

This commit is contained in:
IamTheFij 2023-11-20 10:26:08 -08:00
parent 5a20075878
commit d5ac838705
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ from aiounifi.models.traffic_route import MatchingTarget
HOST = os.getenv("UNIFI_HOST", "192.168.1.1")
PORT = int(os.getenv("UNIFI_PORT", 443))
USERNAME = os.getenv("UNIFI_USER")
PASSWORD = os.getenv("UNIFI_PASSWORD")
PASSWORD = os.getenv("UNIFI_PASS")
LOGGER = logging.getLogger(__name__)