Skip to content

Commit 2285d90

Browse files
fix config var typo
1 parent 564687e commit 2285d90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/config_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self) -> None:
6565
self.blink_name: str = self.config["blink"]["name"]
6666
self.blink_config_file: str = self.base_path + self.config["blink"]["config_file"]
6767
self.blink_night_vision: bool = self.config["blink"]["night_vision"]
68-
self.blink_image_brightening: bool = self.config["blink"].get("image_brightning", False) # optional value see config_template.yaml for more information
68+
self.blink_image_brightening: bool = self.config["blink"].get("image_brightening", False) # optional value see config_template.yaml for more information
6969

7070
self.picam_enabled: bool = self.config["picam"]["enabled"]
7171
self.picam_url: str = self.config["picam"]["url"]
@@ -76,7 +76,7 @@ def __init__(self) -> None:
7676
self.picam_rotation: int = self.config["picam"]["rotation"]
7777
self.picam_iso: int = self.config["picam"]["iso"]
7878
self.picam_night_vision: bool = self.config["picam"]["night_vision"]
79-
self.picam_image_brightening: bool = self.config["picam"].get("image_brightning", False) # optional value see config_template.yaml for more information
79+
self.picam_image_brightening: bool = self.config["picam"].get("image_brightening", False) # optional value see config_template.yaml for more information
8080

8181
self.web_user_dict: dict[str, str] = self.get_web_user_dict()
8282
self.flask_enabled: bool = self.config["web"]["enabled"]

0 commit comments

Comments
 (0)