Update config file path to /etc/config.toml in main application
This commit is contained in:
parent
802213b709
commit
bf58ad1d04
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ from hasspy.mqtt import HassClient
|
|||
def main() -> None:
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
with open("config.toml", "rb") as file:
|
||||
with open("/etc/config.toml", "rb") as file:
|
||||
config = tomllib.load(file)
|
||||
|
||||
ha = HassClient(
|
||||
|
|
Loading…
Add table
Reference in a new issue