Jason Rumney 2 роки тому
батько
коміт
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())