Jason Rumney 2 лет назад
Родитель
Сommit
cf131f72e4
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      util/catalog.py

+ 5 - 1
util/catalog.py

@@ -7,7 +7,10 @@ modification, then again after to compare the two outputs.
 """
 import sys
 
-from custom_components.tuya_local.helpers.device_config import available_configs, TuyaDeviceConfig
+from custom_components.tuya_local.helpers.device_config import (
+    available_configs,
+    TuyaDeviceConfig,
+)
 
 def main() -> int:
     print("Catalog================")
@@ -17,5 +20,6 @@ def main() -> int:
         for entity in device.secondary_entities():
             print(f"{config}: {entity.config_id}")
 
+
 if __name__ == "__main__":
     sys.exit(main())