Fix wakeword.
[kiosk.git] / local_photos_mirror_renderer.py
index 84958de0a774cd3f6fd276d5134bcc87d8a84f34..bb158b9d55d962062c1ff2da0a43c092624d5553 100644 (file)
@@ -9,14 +9,14 @@ import file_writer
 import renderer
 
 
-class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer):
+class local_photos_mirror_renderer(renderer.abstaining_renderer):
     """A renderer that uses a local mirror of Google photos"""
 
     album_root_directory = "/var/www/html/kiosk/images/gphotos/albums"
 
     album_whitelist = frozenset(
         [
-            "8-Mile Lake Hike",
+            "Autumn at Kubota",
             "Bangkok and Phuket, 2003",
             "Barn",
             "Blue Angels... Seafair",
@@ -39,17 +39,19 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer):
             "Portland, ME 2021",
             "Prague and Munich 2019",
             "Random",
+            "SFO 2014",
             "Scott and Lynn",
             "Sculpture Place",
-            "SFO 2014",
             "Skiing with Alex",
             "Sonoma",
             "Trip to California, '16",
             "Trip to San Francisco",
             "Trip to East Coast '16",
+            "Turkey 2022",
             "Tuscany 2008",
-            "Yosemite 2010",
             "WA Roadtrip, 2021",
+            "WA Wines",
+            "Yosemite 2010",
             "Zoo",
         ]
     )
@@ -65,7 +67,7 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer):
     )
 
     def __init__(self, name_to_timeout_dict: Dict[str, int]) -> None:
-        super(local_photos_mirror_renderer, self).__init__(name_to_timeout_dict, False)
+        super().__init__(name_to_timeout_dict)
         self.candidate_photos: Set[str] = set()
 
     def debug_prefix(self) -> str: