Skip to content

Commit

Permalink
[#55] Change HA addon configuration format to match gazpar2haws file …
Browse files Browse the repository at this point in the history
…configuration format.
  • Loading branch information
Stéphane Senart committed Jan 23, 2025
1 parent 82386f0 commit ddab00f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gazpar2haws/config_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
from typing import Any

import yaml

Expand All @@ -7,8 +8,8 @@ class ConfigLoader:
def __init__(self, config_file: str, secrets_file: str):
self.config_file = config_file
self.secrets_file = secrets_file
self.config = {}
self.secrets = {}
self.config = dict[str, Any]()
self.secrets = dict[str, Any]()
self.raw_config = None

def load_secrets(self):
Expand Down

0 comments on commit ddab00f

Please # to comment.