Make subdirs type clean too.
[python_utils.git] / smart_home / registry.py
index 7349081f1b9b1637e2c18db7465b29e82626f54e..16e18ba11bcc5fa19443245f02df546c68d54787 100644 (file)
@@ -8,15 +8,15 @@ import argparse_utils
 import config
 import file_utils
 import logical_search
-import smart_home.device as device
 import smart_home.cameras as cameras
 import smart_home.chromecasts as chromecasts
+import smart_home.device as device
 import smart_home.lights as lights
 import smart_home.outlets as outlets
 
 args = config.add_commandline_args(
     f"Smart Home Registry ({__file__})",
-    "Args related to the smart home configuration registry."
+    "Args related to the smart home configuration registry.",
 )
 args.add_argument(
     '--smart_home_registry_file_location',
@@ -32,9 +32,9 @@ logger = logging.getLogger(__file__)
 
 class SmartHomeRegistry(object):
     def __init__(
-            self,
-            registry_file: Optional[str] = None,
-            filters: List[str] = ['smart'],
+        self,
+        registry_file: Optional[str] = None,
+        filters: List[str] = ['smart'],
     ) -> None:
         self._macs_by_name = {}
         self._keywords_by_name = {}
@@ -44,13 +44,11 @@ class SmartHomeRegistry(object):
 
         # Read the disk config file...
         if registry_file is None:
-            registry_file = config.config[
-                'smart_home_registry_file_location'
-            ]
+            registry_file = config.config['smart_home_registry_file_location']
         assert file_utils.does_file_exist(registry_file)
         logger.debug(f'Reading {registry_file}')
-        with open(registry_file, "r") as f:
-            contents = f.readlines()
+        with open(registry_file, "r") as rf:
+            contents = rf.readlines()
 
         # Parse the contents...
         for line in contents: