Change env variable names for credentials to be less common #43

This commit is contained in:
Thomas Luther 2024-02-22 10:47:57 +01:00
parent 9035c10be6
commit e298a98140
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ CONSOLE: logging.Logger = logging.getLogger("console")
# Optional default Anker Account credentials to be used
_CREDENTIALS = {
"USER": os.getenv("USER"),
"PASSWORD": os.getenv("PASSWORD"),
"COUNTRY": os.getenv("COUNTRY"),
"USER": os.getenv("ANKERUSER"),
"PASSWORD": os.getenv("ANKERPASSWORD"),
"COUNTRY": os.getenv("ANKERCOUNTRY"),
}